-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Mar 14, 2026 at 05:15 AM
-- Server version: 11.4.10-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_avalumcare`
--

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

--
-- Table structure for table `wpa_commentmeta`
--

CREATE TABLE `wpa_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 `wpa_comments`
--

CREATE TABLE `wpa_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 `wpa_comments`
--

INSERT INTO `wpa_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-10 11:24:42', '2026-02-10 11:24:42', '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, '1', '', 'comment', 0, 0);

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

--
-- Table structure for table `wpa_e_events`
--

CREATE TABLE `wpa_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 `wpa_e_notes`
--

CREATE TABLE `wpa_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 `wpa_e_notes_users_relations`
--

CREATE TABLE `wpa_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 `wpa_e_submissions`
--

CREATE TABLE `wpa_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 `wpa_e_submissions_actions_log`
--

CREATE TABLE `wpa_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 `wpa_e_submissions_values`
--

CREATE TABLE `wpa_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 `wpa_links`
--

CREATE TABLE `wpa_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 `wpa_litespeed_url`
--

CREATE TABLE `wpa_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 `wpa_litespeed_url_file`
--

CREATE TABLE `wpa_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 `wpa_options`
--

CREATE TABLE `wpa_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 `wpa_options`
--

INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:13:{i:1773460166;a:1:{s:19:\"litespeed_task_lqip\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1773462282;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:1773487482;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:1773487490;a:3:{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;}}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;}}}i:1773487491;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:1773487534;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:1773491081;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:1773492881;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:1773494681;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:1773524512;a:1:{s:22:\"mwp_update_public_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:1773746728;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:1773833082;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/avalumcare', 'on'),
(3, 'home', 'https://mrarif.me/avalumcare', 'on'),
(4, 'blogname', 'Avalum Care', '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=10&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:5:{i:0;s:15:\"worker/init.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:35:\"litespeed-cache/litespeed-cache.php\";i:4;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:77:\"/home/mrarqpph/public_html/avalumcare/wp-content/themes/astra-child/style.css\";i:1;s:81:\"/home/mrarqpph/public_html/avalumcare/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:20:\"worker/functions.php\";s:13:\"mwp_uninstall\";s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '10', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '81', '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', '1786274681', '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, 'initial_db_version', '60421', 'on'),
(102, 'wpa_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'),
(103, 'fresh_site', '0', 'off'),
(104, 'user_count', '1', 'off'),
(105, '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'),
(106, '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'),
(107, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:5:\"6.8.2\";s:5:\"files\";a:536:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}', 'on'),
(402, 'bsf_usage_migrated', '1', 'off');
INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(403, 'astra-settings', 'a:23:{s:18:\"theme-auto-version\";s:6:\"4.12.3\";s:22:\"is_theme_queue_running\";b:0;s:14:\"font-family-h1\";s:7:\"inherit\";s:14:\"font-family-h2\";s:7:\"inherit\";s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:39;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:20:\"headings-font-family\";s:19:\"\'Rubik\', sans-serif\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:61;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-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:16:\"body-font-family\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-size-body\";a:6:{s:7:\"desktop\";i:17;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-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:25;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:21;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:\"#8cca1f\";i:1;s:7:\"#3e7b04\";i:2;s:7:\"#33334b\";i:3;s:7:\"#575959\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}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-0)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";s:2:\"39\";s:6:\"bottom\";i:15;s:4:\"left\";s:2:\"39\";}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:16:\"font-size-button\";a:6:{s:7:\"desktop\";i:17;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:21:\"headings-font-variant\";s:11:\"300,600,900\";}', 'on'),
(404, 'allowed_astra_notices', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(405, 'astra_usage_installed_time', '1770723595', 'off'),
(126, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1770723593;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'),
(125, 'recovery_keys', 'a:0:{}', 'off'),
(127, '_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'),
(545, '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.4\";s:9:\"timestamp\";i:1773301942;}', 'off');
INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(566, '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 `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2132, 'elementor_atomic_cache_validity__component-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:2:{i:322;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:10;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off'),
(2133, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:2:{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\";}}}}', 'auto'),
(1182, 'mwp_new_communication_established', '1', 'on'),
(1181, 'mwp_potential_key_time', '1773459863', 'on'),
(1180, 'mwp_potential_key', '5cabd195-b222-4f1f-9c65-8d32e29a3256', 'on'),
(1177, 'mwp_communication_keys', 'a:0:{}', 'on'),
(1178, 'mwp_key_last_used_9b5245e4-d8b9-4288-a947-58f9d8710046', '1771278232', 'on'),
(1187, 'mwp_pro_connected', 'pro_sites', 'auto'),
(1160, 'mwp_container_site_parameters', 'a:0:{}', 'auto'),
(1161, 'mwp_maintenace_mode', 'a:0:{}', 'auto'),
(1166, 'mwp_worker_configuration', 'a:9:{s:10:\"master_url\";s:21:\"https://managewp.com/\";s:15:\"master_cron_url\";s:75:\"https://managewp.com/wp-content/plugins/master/mwp-notifications-handle.php\";s:20:\"noti_cache_life_time\";s:5:\"86400\";s:27:\"noti_treshold_spam_comments\";s:2:\"10\";s:30:\"noti_treshold_pending_comments\";s:1:\"0\";s:31:\"noti_treshold_approved_comments\";s:1:\"0\";s:19:\"noti_treshold_posts\";s:1:\"0\";s:20:\"noti_treshold_drafts\";s:1:\"0\";s:8:\"key_name\";s:8:\"managewp\";}', 'auto'),
(1163, 'worker_migration_version', '2', 'yes'),
(2148, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1773459870;s:8:\"response\";a:4:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{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.7\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.7.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:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":13:{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.8\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.8.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:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:15:\"worker/init.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:20:\"w.org/plugins/worker\";s:4:\"slug\";s:6:\"worker\";s:6:\"plugin\";s:15:\"worker/init.php\";s:11:\"new_version\";s:6:\"4.9.31\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/worker/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/worker.4.9.31.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/worker/assets/icon.svg?rev=1015191\";s:3:\"svg\";s:51:\"https://ps.w.org/worker/assets/icon.svg?rev=1015191\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/worker/assets/banner-1544x500.jpg?rev=2035974\";s:2:\"1x\";s:61:\"https://ps.w.org/worker/assets/banner-772x250.jpg?rev=2035974\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"6.8.5\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}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.4\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:380:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzMzMDE5NDIsImV4cCI6MTc3MzM4ODM0Mn0.N2qXsVXSq0xZ6e9pVvmYy-HrJlOsieOs7zras7vVpss/package_download\";s:13:\"download_link\";s:380:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzMzMDE5NDIsImV4cCI6MTc3MzM4ODM0Mn0.N2qXsVXSq0xZ6e9pVvmYy-HrJlOsieOs7zras7vVpss/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.4\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:357:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImlhdCI6MTc3MzMwMTk0MiwiZXhwIjoxNzczMzg4MzQyfQ.bbRiDeTaEwXUBKQMSAVChuDW5OW08Bk_1ZTg6MCkCEM/previous_download\";s:13:\"download_link\";s:357:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImlhdCI6MTc3MzMwMTk0MiwiZXhwIjoxNzczMzg4MzQyfQ.bbRiDeTaEwXUBKQMSAVChuDW5OW08Bk_1ZTg6MCkCEM/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:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:5:{s:23:\"elementor/elementor.php\";s:6:\"3.35.3\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.35.1\";s:35:\"litespeed-cache/litespeed-cache.php\";s:3:\"7.7\";s:15:\"worker/init.php\";s:6:\"4.9.30\";s:41:\"powerpack-elements/powerpack-elements.php\";s:6:\"2.10.3\";}}', 'off'),
(2147, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1773459869;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.12.3\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:2:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.12.4\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.12.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}', 'off');
INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2123, 'elementor_pro_remote_info_api_data_3.25.4', 'a:2:{s:7:\"timeout\";i:1773345142;s:5:\"value\";s:252107:\"{\"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.4\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzMzMDE5NDIsImV4cCI6MTc3MzM4ODM0Mn0.N2qXsVXSq0xZ6e9pVvmYy-HrJlOsieOs7zras7vVpss\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NzMzMDE5NDIsImV4cCI6MTc3MzM4ODM0Mn0.N2qXsVXSq0xZ6e9pVvmYy-HrJlOsieOs7zras7vVpss\\/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.4\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImlhdCI6MTc3MzMwMTk0MiwiZXhwIjoxNzczMzg4MzQyfQ.bbRiDeTaEwXUBKQMSAVChuDW5OW08Bk_1ZTg6MCkCEM\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZSIsImlhdCI6MTc3MzMwMTk0MiwiZXhwIjoxNzczMzg4MzQyfQ.bbRiDeTaEwXUBKQMSAVChuDW5OW08Bk_1ZTg6MCkCEM\\/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 `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(542, 'db_upgraded', '', 'on'),
(151, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'off'),
(152, 'recently_activated', 'a:1:{s:35:\"litespeed-cache/litespeed-cache.php\";i:1771278134;}', 'off'),
(177, 'finished_updating_comment_type', '1', 'auto'),
(158, 'elementor_active_kit', '6', 'auto'),
(159, 'elementor_font_display', 'swap', 'auto'),
(162, 'elementor_landing_pages_activation', '0', 'auto'),
(163, 'elementor_checklist', '{\"last_opened_timestamp\":null,\"first_closed_checklist_in_editor\":true,\"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\":false}', 'auto'),
(164, 'elementor_version', '3.35.3', 'auto'),
(165, 'elementor_install_history', 'a:1:{s:6:\"3.35.3\";i:1770722734;}', 'auto'),
(166, 'elementor_events_db_version', '1.0.0', 'off'),
(168, '_elementor_ab_testing_data', 'a:2:{s:7:\"timeout\";i:1770793926;s:5:\"value\";s:273:\"[{\"coreOnboarding\":{\"emphasizeConnectBenefits101\":false,\"embedConnectInOnboarding102\":false,\"onboardingStartsWithLogin103\":false,\"offerThemeChoicesHelloBiz201\":true,\"emphasizeThemeValueAudience202\":false,\"updateCopyVisuals401\":false,\"reduceHierarchyBlankOption402\":false}}]\";}', 'off'),
(169, 'elementor_onboarded', '1', 'auto'),
(170, '_elementor_installed_time', '1770722742', 'auto'),
(171, 'elementor_connect_site_key', '35d60bb9a1fe9083252cc1322b68e015', 'auto'),
(172, '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'),
(374, 'elementor_pro_version', '3.25.4', 'auto'),
(385, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1773301941;s:16:\"get_license_data\";i:1771277979;}', 'auto');
INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(558, '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-0)\";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-1)\";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\";i:15;s:5:\"right\";s:2:\"39\";s:6:\"bottom\";i:15;s:4:\"left\";s:2:\"39\";}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: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[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:\"#8cca1f\";i:1;s:7:\"#3e7b04\";i:2;s:7:\"#33334b\";i:3;s:7:\"#575959\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}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:\"#8cca1f\";i:1;s:7:\"#3e7b04\";i:2;s:7:\"#33334b\";i:3;s:7:\"#575959\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}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:25:\"var(--ast-global-color-0)\";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:\"\'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:33:\"astra-settings[body-font-variant]\";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: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:17;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:19:\"\'Rubik\', 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:11:\"300,600,900\";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:61;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:39;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:25;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:21;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:22:\"narrow-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: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-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:7:\"inherit\";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:17;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: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: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:41:\"https://mrarif.me/avalumcare/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 `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(427, '_elementor_home_screen_data', 'a:2:{s:7:\"timeout\";i:1770727315;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'),
(375, 'elementor_pro_install_history', 'a:1:{s:6:\"3.25.4\";i:1770723310;}', 'auto'),
(376, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(379, '_elementor_pro_installed_time', '1770723312', 'auto'),
(380, 'elementor_submissions_db_version', '5', 'auto'),
(2139, '_transient_timeout_astra-theme-cron-test-ok', '1773463464', 'off'),
(2140, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(430, 'elementor_disable_color_schemes', 'yes', 'auto'),
(478, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(479, 'pp_license_status', 'valid', 'auto'),
(431, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(432, 'elementor_allow_tracking_last_update', '1770725133', 'auto'),
(433, 'elementor_allow_tracking', 'yes', 'auto'),
(434, 'elementor_google_maps_api_key', '', 'auto'),
(435, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(436, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(437, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(438, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(439, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(440, 'elementor_pro_facebook_app_id', '', 'auto'),
(441, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(442, 'elementor_validate_api_data', '', 'auto'),
(443, 'elementor_pro_drip_api_token', '', 'auto'),
(444, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(445, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(446, 'elementor_pro_getresponse_api_key', '', 'auto'),
(447, 'elementor_pro_convertkit_api_key', '', 'auto'),
(448, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(449, 'elementor_typekit-kit-id', '', 'auto'),
(450, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(451, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(452, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(453, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(454, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(455, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(456, 'elementor_editor_break_lines', '', 'auto'),
(457, 'elementor_unfiltered_files_upload', '1', 'auto'),
(458, 'elementor_google_font', '1', 'auto'),
(459, 'elementor_form-submissions', '', 'auto'),
(460, 'elementor_load_fa4_shim', '', 'auto'),
(461, 'elementor_meta_generator_tag', '', 'auto'),
(462, 'elementor_css_print_method', 'external', 'auto'),
(463, 'elementor_optimized_image_loading', '1', 'auto'),
(464, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(465, 'elementor_lazy_load_background_images', '1', 'auto'),
(466, 'elementor_local_google_fonts', '0', 'auto'),
(467, 'elementor_element_cache_ttl', '24', 'auto'),
(468, 'elementor_experiment-container', 'default', 'auto'),
(469, 'elementor_experiment-nested-elements', 'default', 'auto'),
(470, 'elementor_experiment-mega-menu', 'default', 'auto'),
(471, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(472, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(473, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(474, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(502, '_elementor_element_cache_unique_id', '9003e6cc8a974d8235f315a7a56b067f', 'auto'),
(477, 'elementor_log', 'a:7:{s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-10 11:42:20\";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:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-10 11:42:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770723740\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:91:\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/js/admin.min.js?ver=3.35.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"45739\";}s:7:\"\0*\0file\";s:91:\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/js/admin.min.js?ver=3.35.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"45739\";}s:32:\"f99eb5ed417492ef28b6b3000203a316\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-10 12:30:11\";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-10 12:30:11\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770726611\";s:7:\"message\";s:51:\"Cannot read properties of undefined (reading \'get\')\";s:3:\"url\";s:92:\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"22591\";}s:7:\"\0*\0file\";s:92:\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"22591\";}s:32:\"98772362f3c24efcc27bf8b85377fd93\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-10 12:46:37\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1748:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/avalumcare/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/avalumcare/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(341): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/avalumcare/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/avalumcare/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/avalumcare/wp-config.php(104): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/avalumcare/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/avalumcare/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/avalumcare/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:13;s:14:\"\0*\0times_dates\";a:13:{i:0;s:19:\"2026-02-10 12:46:37\";i:1;s:19:\"2026-02-10 12:46:37\";i:2;s:19:\"2026-02-10 12:46:37\";i:3;s:19:\"2026-02-10 15:22:34\";i:4;s:19:\"2026-02-10 15:22:34\";i:5;s:19:\"2026-02-10 15:26:09\";i:6;s:19:\"2026-02-10 15:26:09\";i:7;s:19:\"2026-02-10 15:26:09\";i:8;s:19:\"2026-02-11 06:12:31\";i:9;s:19:\"2026-02-11 06:12:31\";i:10;s:19:\"2026-02-11 06:12:50\";i:11;s:19:\"2026-02-11 06:12:50\";i:12;s:19:\"2026-02-11 06:12:50\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1687:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(341): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/avalumcare/wp-includes/plugin.php(522): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/avalumcare/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/avalumcare/wp-config.php(104): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/avalumcare/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/avalumcare/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/avalumcare/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:99:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:207;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:99:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:207;}s:32:\"5cc10fd86ece06382b3a7fd7049ef741\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-10 13:28:35\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:38:\"Undefined array key &quot;config&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:63;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:51;s:8:\"function\";s:18:\"reorder_categories\";s:5:\"class\";s:59:\"Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:94:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php\";s:4:\"line\";i:322;s:8:\"function\";s:9:\"get_items\";s:5:\"class\";s:59:\"Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:94:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php\";s:4:\"line\";i:233;s:8:\"function\";s:13:\"base_callback\";s:5:\"class\";s:33:\"Elementor\\Data\\V2\\Base\\Base_Route\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:83:\"/home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php\";s:4:\"line\";i:1292;s:8:\"function\";s:32:\"Elementor\\Data\\V2\\Base\\{closure}\";s:5:\"class\";s:33:\"Elementor\\Data\\V2\\Base\\Base_Route\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-10 13:28:35\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:28:\"Undefined array key \"config\"\";s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:63;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:63;}s:32:\"ed82977b65722a81ada4188bd589e8c6\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-10 13:28:35\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:37:\"Trying to access array offset on null\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:63;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:51;s:8:\"function\";s:18:\"reorder_categories\";s:5:\"class\";s:59:\"Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:94:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php\";s:4:\"line\";i:322;s:8:\"function\";s:9:\"get_items\";s:5:\"class\";s:59:\"Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:94:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php\";s:4:\"line\";i:233;s:8:\"function\";s:13:\"base_callback\";s:5:\"class\";s:33:\"Elementor\\Data\\V2\\Base\\Base_Route\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:83:\"/home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php\";s:4:\"line\";i:1292;s:8:\"function\";s:32:\"Elementor\\Data\\V2\\Base\\{closure}\";s:5:\"class\";s:33:\"Elementor\\Data\\V2\\Base\\Base_Route\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-02-10 13:28:35\";i:1;s:19:\"2026-02-10 13:28:35\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:37:\"Trying to access array offset on null\";s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:63;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:63;}s:32:\"6bad43f2922395947cb1e03855772e16\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-10 13:28:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:2226:\"Uncaught TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given in /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php:63\nStack trace:\n#0 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php(63): array_search()\n#1 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php(51): Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates-&gt;reorder_categories()\n#2 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php(322): Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates-&gt;get_items()\n#3 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php(233): Elementor\\Data\\V2\\Base\\Base_Route-&gt;base_callback()\n#4 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php(1292): Elementor\\Data\\V2\\Base\\Base_Route-&gt;Elementor\\Data\\V2\\Base\\{closure}()\n#5 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php(1125): WP_REST_Server-&gt;respond_to_request()\n#6 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php(439): WP_REST_Server-&gt;dispatch()\n#7 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api.php(467): WP_REST_Server-&gt;serve_request()\n#8 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(341): rest_api_loaded()\n#9 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#10 /home/mrarqpph/public_html/avalumcare/wp-includes/plugin.php(570): WP_Hook-&gt;do_action()\n#11 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp.php(418): do_action_ref_array()\n#12 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp.php(821): WP-&gt;parse_request()\n#13 /home/mrarqpph/public_html/avalumcare/wp-includes/functions.php(1343): WP-&gt;main()\n#14 /home/mrarqpph/public_html/avalumcare/wp-blog-header.php(16): wp()\n#15 /home/mrarqpph/public_html/avalumcare/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#16 {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-10 13:28:35\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:2183:\"Uncaught TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given in /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php:63\nStack trace:\n#0 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php(63): array_search()\n#1 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php(51): Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates->reorder_categories()\n#2 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php(322): Elementor\\Includes\\TemplateLibrary\\Data\\Endpoints\\Templates->get_items()\n#3 /home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/data/v2/base/base-route.php(233): Elementor\\Data\\V2\\Base\\Base_Route->base_callback()\n#4 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php(1292): Elementor\\Data\\V2\\Base\\Base_Route->Elementor\\Data\\V2\\Base\\{closure}()\n#5 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php(1125): WP_REST_Server->respond_to_request()\n#6 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api/class-wp-rest-server.php(439): WP_REST_Server->dispatch()\n#7 /home/mrarqpph/public_html/avalumcare/wp-includes/rest-api.php(467): WP_REST_Server->serve_request()\n#8 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(341): rest_api_loaded()\n#9 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#10 /home/mrarqpph/public_html/avalumcare/wp-includes/plugin.php(570): WP_Hook->do_action()\n#11 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp.php(418): do_action_ref_array()\n#12 /home/mrarqpph/public_html/avalumcare/wp-includes/class-wp.php(821): WP->parse_request()\n#13 /home/mrarqpph/public_html/avalumcare/wp-includes/functions.php(1343): WP->main()\n#14 /home/mrarqpph/public_html/avalumcare/wp-blog-header.php(16): wp()\n#15 /home/mrarqpph/public_html/avalumcare/index.php(17): require(\'/home/mrarqpph/...\')\n#16 {main}\n  thrown\";s:4:\"file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:4:\"line\";i:63;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:121:\"/home/mrarqpph/public_html/avalumcare/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:63;}s:32:\"530702855f7fd99784e082395bc45136\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-10 15:26:02\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of null (reading &#039;getOptions&#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-10 15:26:02\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770737162\";s:7:\"message\";s:53:\"Cannot read properties of null (reading \'getOptions\')\";s:3:\"url\";s:85:\"https://mrarif.me/avalumcare/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.3.1.1\";s:4:\"line\";s:2:\"10\";s:6:\"column\";s:5:\"23733\";}s:7:\"\0*\0file\";s:85:\"https://mrarif.me/avalumcare/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.3.1.1\";s:7:\"\0*\0line\";s:2:\"10\";s:9:\"\0*\0column\";s:5:\"23733\";}}', 'off'),
(481, 'e_editor_counter', '38', 'auto'),
(482, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1770801226;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'),
(489, 'elementor_one_client_id', 'a49d779e-faa6-4218-8161-4933fbd98617', 'off'),
(487, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1778499798', 'off'),
(488, '_transient__elementor_ab_test_plg_site_mailer_submission', '2', 'off'),
(490, 'elementor_one_client_secret', 'NhNl0.VaB1DRbM7VIM~8NH3aPv', 'off'),
(491, 'elementor_one_home_url', 'aHR0cHM6Ly9tcmFyaWYubWUvYXZhbHVtY2FyZQ==', 'off'),
(492, '_elementor_pro_editor_activate_license_notice_dismissed', '1770724942', 'auto'),
(495, 'WPLANG', '', 'auto'),
(496, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(556, 'can_compress_scripts', '1', 'on'),
(510, '_astra_customizer_published_timestamps', 'a:4:{i:0;i:1770724285;i:1;i:1770724816;i:2;i:1770724844;i:3;i:1770726881;}', 'off'),
(421, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(422, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(423, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(413, 'theme_mods_astra-child', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:11:\"mobile_menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;}', 'on'),
(541, 'wp_notes_notify', '1', 'on'),
(389, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1770734354;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'),
(428, '_elementor_settings_update_time', '1770723721', 'auto'),
(429, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(397, 'current_theme', 'astra child', 'auto');
INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(398, 'theme_mods_astra', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1770723652;s:4:\"data\";a:8:{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:{}}}}', 'off'),
(399, 'theme_switched', '', 'auto'),
(511, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:\"footer\";a:1:{i:293;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:70;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(513, '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:\"#8cca1f\";i:1;s:7:\"#3e7b04\";i:2;s:7:\"#33334b\";i:3;s:7:\"#575959\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}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'),
(518, 'elementor_tracker_last_send', '1773459867', 'auto'),
(576, 'elementor_library_category_children', 'a:0:{}', 'auto'),
(523, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(524, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1771364380;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'),
(525, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1771321180;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'),
(526, 'elementor_notes_db_version', '5', 'auto'),
(528, 'elementor_controls_usage', 'a:5:{s:9:\"container\";a:9:{s:5:\"image\";a:2:{s:5:\"count\";i:2;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:9:{s:5:\"align\";i:2;s:5:\"width\";i:2;s:5:\"space\";i:2;s:19:\"image_border_radius\";i:1;s:6:\"height\";i:2;s:10:\"object-fit\";i:1;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:27:\"image_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:2;}s:14:\"_section_style\";a:4:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:3;s:4:\"view\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:4:{s:13:\"primary_color\";i:1;s:15:\"secondary_color\";i:1;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:2;}s:21:\"section_style_content\";a:3:{s:11:\"title_color\";i:1;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_weight\";i:2;}s:17:\"section_style_box\";a:4:{s:8:\"position\";i:2;s:15:\"position_mobile\";i:2;s:10:\"icon_space\";i:2;s:26:\"content_vertical_alignment\";i:2;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";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:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";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:5:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:5;s:8:\"flex_gap\";i:3;s:20:\"flex_justify_content\";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:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:4:{s:14:\"section_layout\";a:3:{s:11:\"css_classes\";i:2;s:7:\"padding\";i:5;s:16:\"_flex_align_self\";i:1;}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:5;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}s:18:\"section_text_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:10:\"text_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:\"heading\";a:2:{s:5:\"count\";i:3;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:3:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i: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:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}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:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:1:{s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_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: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:6:\"pp-faq\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_faq_items_style\";a:4:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_width\";i:1;s:22:\"faq_items_border_color\";i:1;s:23:\"faq_items_border_radius\";i:1;}s:23:\"section_questions_style\";a:3:{s:17:\"question_bg_color\";i:1;s:26:\"faq_question_border_radius\";i:1;s:16:\"question_padding\";i:1;}s:21:\"section_answers_style\";a:1:{s:14:\"answer_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:\"page\";a:4:{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: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:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";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;}}}}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:3:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";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:5:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";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:2:{s:5:\"count\";i:1;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:20:\"columns_tablet_extra\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;}}s:5:\"style\";a:4:{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:27:\"section_info_box_icon_style\";a:4:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;s:11:\"icon_margin\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"footer\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;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:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{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:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";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:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";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: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:7:\"wp-page\";a:12:{s:7:\"heading\";a:2:{s:5:\"count\";i:31;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:31;s:11:\"header_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:16;s:25:\"typography_text_transform\";i:16;s:5:\"align\";i:4;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:31;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:23;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}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:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:81;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:13:\"content_width\";i:54;s:14:\"flex_direction\";i:73;s:20:\"flex_justify_content\";i:27;s:5:\"width\";i:45;s:8:\"flex_gap\";i:26;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:81;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:16;s:16:\"background_color\";i:10;s:21:\"background_color_stop\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:5:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:81;}s:14:\"section_layout\";a:5:{s:6:\"margin\";i:4;s:7:\"padding\";i:32;s:11:\"css_classes\";i:4;s:10:\"_flex_size\";i:2;s:16:\"_flex_align_self\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:50;s:18:\"animation_duration\";i:50;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:24;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:24;s:10:\"image_size\";i:24;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:9:{s:5:\"align\";i:4;s:5:\"width\";i:6;s:5:\"space\";i:6;s:19:\"image_border_radius\";i:22;s:6:\"height\";i:4;s:10:\"object-fit\";i:4;s:19:\"image_border_border\";i:4;s:18:\"image_border_width\";i:4;s:27:\"image_box_shadow_box_shadow\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:24;}s:14:\"_section_style\";a:5:{s:9:\"_position\";i:2;s:21:\"_offset_orientation_h\";i:2;s:13:\"_offset_x_end\";i:2;s:9:\"_offset_y\";i:2;s:8:\"_padding\";i:2;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:2;s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:13:\"ending_number\";i:2;s:5:\"title\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:2:{s:28:\"typography_number_typography\";i:2;s:27:\"typography_number_font_size\";i:2;}s:13:\"section_title\";a:1:{s:27:\"typography_title_typography\";i:2;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:16:\"_flex_align_self\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:2;}}}}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:4:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:2;s:4:\"text\";i:2;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:6:\"weight\";i:2;}s:18:\"section_text_style\";a:3:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:10:\"text_align\";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:2:{s:5:\"count\";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:2;s:6:\"layout\";i:2;s:20:\"columns_tablet_extra\";i:2;s:20:\"columns_mobile_extra\";i:2;s:14:\"title_html_tag\";i:2;s:18:\"equal_height_boxes\";i:2;s:7:\"columns\";i:2;}}s:5:\"style\";a:5:{s:22:\"section_info_box_style\";a:4:{s:30:\"info_box_background_background\";i:2;s:16:\"info_box_padding\";i:2;s:25:\"info_box_background_color\";i:2;s:22:\"info_box_border_radius\";i:2;}s:27:\"section_info_box_icon_style\";a:7:{s:9:\"icon_size\";i:2;s:18:\"icon_border_radius\";i:2;s:12:\"icon_padding\";i:2;s:11:\"icon_margin\";i:2;s:14:\"icon_img_width\";i:2;s:17:\"icon_color_normal\";i:2;s:20:\"icon_bg_color_normal\";i:2;}s:28:\"section_info_box_title_style\";a:4:{s:12:\"title_margin\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_weight\";i:2;s:31:\"title_typography_text_transform\";i:2;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:2;}s:29:\"section_info_box_button_style\";a:7:{s:24:\"button_text_color_normal\";i:2;s:22:\"button_bg_color_normal\";i:2;s:28:\"button_typography_typography\";i:2;s:27:\"button_typography_font_size\";i:2;s:33:\"button_typography_text_decoration\";i:2;s:14:\"button_padding\";i:2;s:23:\"button_text_color_hover\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:13:\"selected_icon\";i:5;s:4:\"view\";i:5;s:10:\"title_text\";i:5;s:16:\"description_text\";i:5;s:10:\"title_size\";i:5;s:4:\"link\";i:4;s:5:\"shape\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:5;s:26:\"content_vertical_alignment\";i:5;s:15:\"position_mobile\";i:5;s:10:\"icon_space\";i:4;}s:18:\"section_style_icon\";a:3:{s:9:\"icon_size\";i:4;s:12:\"icon_padding\";i:4;s:13:\"border_radius\";i:1;}s:21:\"section_style_content\";a:2:{s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_weight\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:4;}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:4:\"form\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:2;s:11:\"button_text\";i:2;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:2;s:8:\"email_to\";i:2;s:13:\"email_subject\";i:2;s:14:\"email_reply_to\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:2;s:7:\"row_gap\";i:2;s:13:\"label_spacing\";i:2;s:27:\"label_typography_typography\";i:2;s:26:\"label_typography_font_size\";i:2;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";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:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:5;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:5;s:20:\"icon_vertical_offset\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:6:\"pp-faq\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_faq_items_style\";a:4:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_width\";i:1;s:22:\"faq_items_border_color\";i:1;s:23:\"faq_items_border_radius\";i:1;}s:23:\"section_questions_style\";a:3:{s:17:\"question_bg_color\";i:1;s:26:\"faq_question_border_radius\";i:1;s:16:\"question_padding\";i:1;}s:21:\"section_answers_style\";a:1:{s:14:\"answer_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:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:4;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:25:\"typography_text_transform\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}s:6:\"header\";a:6:{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:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:2;s:17:\"icon_align_mobile\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:15:\"icon_self_align\";i:2;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";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:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:8:\"flex_gap\";i:2;s:11:\"boxed_width\";i:2;s:20:\"flex_justify_content\";i:2;s:10:\"min_height\";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:8;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;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:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:14:\"section_layout\";a:4:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:7:\"z_index\";i:1;s:20:\"e_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{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:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";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:2:{s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:5:{s:23:\"section_style_main_menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:30:\"pointer_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:13:\"pointer_width\";i:1;s:22:\"color_menu_item_active\";i:1;}s:16:\"style_typography\";a:7:{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:\"menu_typography_text_transform\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:34:\"dropdown_typography_text_transform\";i:1;}s:22:\"section_style_dropdown\";a:8:{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_color\";i:1;s:22:\"dropdown_divider_width\";i:1;}s:12:\"style_toggle\";a:1:{s:12:\"toggle_color\";i:1;}s:16:\"style_responsive\";a:8:{s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_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:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:16:\"_flex_align_self\";i: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:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";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_responsive\";a:2:{s:17:\"hide_mobile_extra\";i: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:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}}', 'off'),
(533, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(1152, 'mwp_service_key', '3f19ad02-1aac-4313-8104-ea1605aa26ef', 'on'),
(1179, 'mmb_stats_filter', 'a:1:{s:7:\"plugins\";a:1:{s:7:\"cleanup\";a:1:{s:9:\"revisions\";a:1:{s:11:\"num_to_keep\";i:5;}}}}', 'auto'),
(1155, 'mwp_openssl_parameters', 'a:2:{s:4:\"time\";i:1773459863;s:7:\"working\";b:1;}', 'on'),
(1156, 'mwp_incremental_update_active', '', 'auto'),
(1157, 'mwp_recovering', '', 'auto'),
(1158, 'mwp_core_autoupdate', '', 'auto'),
(1159, 'mwp_container_parameters', 'a:0:{}', 'auto'),
(2059, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(2060, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(2061, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(2052, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(2053, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(2054, 'litespeed.conf.crawler', '', 'auto'),
(2055, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(2083, 'litespeed.purge.queue2', '-1', 'auto'),
(2062, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(2063, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(2064, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(2065, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(2066, 'litespeed.conf.cdn', '', 'auto'),
(2067, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(2068, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\",\"wp-includes\"]', 'auto'),
(2069, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(2070, 'litespeed.conf.cdn-quic', '', 'auto'),
(2071, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(2072, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(2073, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(2074, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(2075, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(2076, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(2077, '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'),
(2078, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(2079, 'litespeed.conf.qc-nameservers', '', 'auto'),
(2080, 'litespeed.conf.qc-cname', '', 'auto'),
(2081, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(2082, 'litespeed.purge.queue', 'X-LiteSpeed-Purge: public,6b7_Po.20,6b7_W.recent-posts-1,6b7_FD,6b7_A.1,6b7_F,6b7_H,6b7_PGS,6b7_PGSRP,6b7_D.202602,6b7_REST,6b7_Po.21,6b7_Po.22,6b7_Po.59', 'auto'),
(2056, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(2057, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(2058, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(1922, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(1923, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(1924, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(1925, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(1926, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(1927, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(1928, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(1929, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(1930, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(1931, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(1932, 'litespeed.conf.purge-upgrade', '', 'auto'),
(1933, 'litespeed.conf.purge-stale', '', 'auto'),
(1934, 'litespeed.conf.purge-post_all', '', 'auto'),
(1935, 'litespeed.conf.purge-post_f', '1', 'auto'),
(1936, 'litespeed.conf.purge-post_h', '1', 'auto'),
(1937, 'litespeed.conf.purge-post_p', '1', 'auto'),
(1938, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(1939, 'litespeed.conf.purge-post_a', '1', 'auto'),
(1940, 'litespeed.conf.purge-post_y', '', 'auto'),
(1941, 'litespeed.conf.purge-post_m', '1', 'auto'),
(1942, 'litespeed.conf.purge-post_d', '', 'auto'),
(1943, 'litespeed.conf.purge-post_t', '1', 'auto'),
(1944, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(1945, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(1946, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(1947, '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'),
(1948, 'litespeed.conf.esi', '', 'auto'),
(1949, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(1950, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(1951, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(1952, 'litespeed.conf.util-instant_click', '', 'auto'),
(1953, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(1954, 'litespeed.conf.debug-disable_all', '', 'auto'),
(1955, 'litespeed.conf.debug', '0', 'auto'),
(1956, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(1957, 'litespeed.conf.debug-level', '', 'auto'),
(1958, 'litespeed.conf.debug-filesize', '3', 'auto'),
(1959, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(1960, 'litespeed.conf.debug-inc', '[]', 'auto'),
(1961, 'litespeed.conf.debug-exc', '[]', 'auto'),
(1962, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(1963, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(1964, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(1965, 'litespeed.conf.optm-css_min', '', 'auto'),
(1966, 'litespeed.conf.optm-css_comb', '', 'auto'),
(1967, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(1968, 'litespeed.conf.optm-ucss', '', 'auto'),
(1969, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(1970, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(1971, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(1972, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(1973, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(1974, 'litespeed.conf.optm-js_min', '', 'auto'),
(1975, 'litespeed.conf.optm-js_comb', '', 'auto'),
(1976, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(1977, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(1978, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(1979, 'litespeed.conf.optm-html_min', '', 'auto'),
(1980, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(1981, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(1982, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(1983, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(1984, 'litespeed.conf.optm-css_async', '', 'auto'),
(1985, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(1986, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(1987, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(1988, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(1989, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(1990, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(1991, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(1992, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(1993, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(1994, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(1995, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(1996, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(1997, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(1998, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(1999, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(2000, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(2001, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(2002, 'litespeed.conf.optm-exc', '[]', 'auto'),
(2003, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(2004, 'litespeed.conf.object', '', 'auto'),
(2005, 'litespeed.conf.object-kind', '', 'auto'),
(2006, 'litespeed.conf.object-host', 'localhost', 'auto'),
(2007, 'litespeed.conf.object-port', '11211', 'auto'),
(2008, 'litespeed.conf.object-life', '360', 'auto'),
(2009, 'litespeed.conf.object-persistent', '1', 'auto'),
(2010, 'litespeed.conf.object-admin', '1', 'auto'),
(2011, 'litespeed.conf.object-transients', '1', 'auto'),
(2012, 'litespeed.conf.object-db_id', '0', 'auto'),
(2013, 'litespeed.conf.object-user', '', 'auto'),
(2014, 'litespeed.conf.object-pswd', '', 'auto'),
(2015, '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'),
(2016, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(2017, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(2018, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(2019, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(2020, 'litespeed.conf.optm-localize', '', 'auto'),
(2021, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(2022, 'litespeed.conf.media-lazy', '', 'auto'),
(2023, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(2024, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(2025, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(2026, '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'),
(2027, 'litespeed.conf.media-lqip', '', 'auto'),
(2028, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(2029, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(2030, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(2031, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(2032, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(2033, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(2034, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(2035, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(2036, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(2037, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(2038, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(2039, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(2040, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(2041, 'litespeed.conf.media-vpi', '', 'auto'),
(2042, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(2043, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(2044, 'litespeed.conf.img_optm-auto', '', 'auto'),
(2045, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(2046, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(2047, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(2048, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(2049, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(1894, 'litespeed.conf._version', '7.7', 'auto'),
(1895, 'litespeed.conf.hash', 'nXtIltk1Op7jZDQTnPAY57MsvPhViz6E', 'auto'),
(1896, 'litespeed.conf.api_key', '', 'auto'),
(1897, 'litespeed.conf.auto_upgrade', '', 'auto'),
(1898, 'litespeed.conf.server_ip', '', 'auto'),
(1899, 'litespeed.conf.guest', '', 'auto'),
(1900, 'litespeed.conf.guest_optm', '', 'auto'),
(1901, 'litespeed.conf.news', '1', 'auto'),
(1902, 'litespeed.conf.cache', '1', 'auto'),
(1903, 'litespeed.conf.cache-priv', '1', 'auto'),
(1904, 'litespeed.conf.cache-commenter', '1', 'auto'),
(1905, 'litespeed.conf.cache-rest', '1', 'auto'),
(1906, 'litespeed.conf.cache-page_login', '1', 'auto'),
(1907, 'litespeed.conf.cache-mobile', '', 'auto'),
(1908, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(1909, 'litespeed.conf.cache-browser', '', 'auto'),
(1910, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(1911, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(1912, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(1913, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(1914, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(1915, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(1916, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(1917, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(1918, 'litespeed.conf.cache-exc', '[]', 'auto'),
(1919, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(1920, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(1921, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(2117, '_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.4.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.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";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:1773459869;s:15:\"version_checked\";s:5:\"6.9.4\";s:12:\"translations\";a:0:{}}', 'off'),
(2145, '_site_transient_timeout_theme_roots', '1773461669', 'off'),
(2146, '_site_transient_theme_roots', 'a:3:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}', 'off'),
(1168, 'mwp_public_keys_refresh_time', '1773459870', 'on');
INSERT INTO `wpa_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1169, 'mwp_public_keys', 'a:12:{i:0;a:6:{s:2:\"id\";s:19:\"managewp_1769565901\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2026-02-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-03-16 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1BI7uXl4SX7fgE9BjALR\nfGO9sMdemfxzvFkXewJSHjyzOwK+X00nxvltGfj0Ao2XQBI+BZhd98AcGb/blPQQ\ndw+Wf1jpkg2eWEnzkXvdj2/4wQ/p4H140GR75FuCXtO2GELadarreku2NUO153ec\nd48+n+/OpAMzCC+BFjJE5UcMxXp7x/Tcu5IpyvCCdAuDen5x7e3h1wQYRVIVxt6d\n315jcrS86E3uS5ZacPYuciK95L1GmKnnrh0NN9OhiSL1NXeOD+gS3q9NJAekol16\nqcUJI5OJ7H+HrBdzoL/RpZzquOw0a59zTdai3/8EscpftAx6CBkdGLv4n+9eLJcw\nTQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:1;a:6:{s:2:\"id\";s:19:\"managewp_1772157901\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2026-03-14 01:26:15\";s:7:\"validTo\";s:19:\"2026-04-15 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA36IoYGGGroYRGpx+Pnlv\nvuJ4PvPeVrRg7ZeZVDdCoujcajYmnGVdI4D/50vvwOJP74kqRCgbFzoXNll0CuiN\nBF/W5xqePVOfkZcsB0vCFTJs/mvlxbOl57XVd2gt1jXOsHmH2Yzv+voX0SMIJgrA\ncwov9z8M+RgeT65KDcLc3dVLTC2qymWVAh+JhMhhOL9zquRIukuVqZaDrsNRjygk\nizt4jVwwIL8Xb+gvF1QAI8c4c0qC6MWhvpIVsBQxDE1BSpwieBlNVE/L7mCRz4M+\nY2QCgPJoRH8hYZOxNa1wfGtq8V66equVnTX2oSJqYsYin8ZMu9P5eNozXf4OMxYq\nQwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:2;a:6:{s:2:\"id\";s:23:\"managewp_dev_1769565901\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2026-02-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-03-16 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4uegIILUVAf0a6KjaBgU\nL8S6s9fELeqR8EHbEGP2zRIdpLBFJ98YRu+Xf8sJPyPw17LOJsgoF+XxzqFeoZtL\nCLkbCxO4Noyh7mGeYpwo5K14MkuqvEmRUl/nerzN0BIQrNKU+rIPult2hF5/qV7n\n0WC8eWSZLeHxTnsTZ64oNSiL75tcUV7BR40fRBsEhaZWmuPhyKaSPhhlNSXkGJo6\n1mYkVxYLuA9A5VLyI7IH4LxsYvlcqjYHg0b6gejaQEOqQpN4HZDR9wZ2BsqoU+49\nCyx10UOcG97ySd2Hm/OzaTjZl2AZvSyrcaz09XjheM3eIKpwQ1Y0/YhJH1AEz1+T\nqQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:3;a:6:{s:2:\"id\";s:23:\"managewp_dev_1772157902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2026-03-14 01:26:15\";s:7:\"validTo\";s:19:\"2026-04-15 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwnYRySQOz7I3jAPtDT5G\nGUEK0zbJ2N00z8jK5uR3nTnlptY2IHBDCOQm/jNgtQbTDGHWthC2ILu9hcL9sMLj\nXrDPp8TmkGshgkplLcaAcyg4gaF5iUGZ4LF7F8+caIsvy7mZ0waNJlKOPWE9NJyG\nAU7HZKIUV1Ge7gi7myEBt1wz65dSTrZS6KH2mI6jmtqI3a3TbEahHDxbmuQIcKxk\nTkq6IZhfsC/yIjcsHxMLAWzkvm0tQlST/SerjvN+joo548zZmbt0pAEefpJ1BR2Q\nI8jK6w454cHhbLK+vpEgKH9kz1oe1eAEWMiC0BGsN932+5rAr7yjwm33uMqc5Efa\nswIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:4;a:6:{s:2:\"id\";s:16:\"mwp20_1769565902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2026-02-12 01:26:15\";s:7:\"validTo\";s:19:\"2026-03-16 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnpJybTAtyFhxhOId2Rk/\nraDC+EYuhc+kKUWKwlyjizyKXAMXrK2s6TkNCvfn2RueBbqyJinJEQokgK5p7MIR\nOwZAw5/wuFERlGmww4UyfPKYUquB6E/pqgF7anNI+mqFYfkU3AQHpudi6tHHsaTc\nEKSWCjBRJfSDRYffxxa1EDyddsjLT6pJXFkDPXl/3lAKisZeftGRZGB54uo+63sB\nh1jRAChwh1E7/cMbUN8Ku9Ku08H0zcvS6NHYIR88hscTZaijEBWEEpDluDBnJXQH\nuuUjD8M3L5NGpgxKJ1vGTx0pOmx4resQ9Ed8Dr5WqWL5RYkjOTKnBq6ACe54d1/T\n8wIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:5;a:6:{s:2:\"id\";s:16:\"mwp20_1772157902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2026-03-14 01:26:15\";s:7:\"validTo\";s:19:\"2026-04-15 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr0AT53EhzCnB+vFmbkyJ\nFNJc61tiusbb27qw+KQOiR8KAe3J/8CZVxvUQpqWuKeDyD/STZLFiWnnNo3tBw2m\nqxhN7tnymAZrGrsU0tBR64NO+McMFBIdDeqw1EkZwM+4ye6ZyixXtf9QWuTE697J\n8QSbQH+70e9AXdyGF+zExEXwo/7qKo0k+BBWcwAVFjLze5tX/715toavsjyvjg96\nOU9ti8cRzKHhxSOJtfhPOcutrOb3MVxUJak4JlW7/Y32ZSlGZqyWi+g9pZomIHv6\nK08mQ5T4klYufUXiUwQCZjPJSMLfSLgHXjy0ZYjEQYr+xyKMe28kCEA4IAjnyV1p\nAQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:15:\"wpps_1771765501\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2026-03-09 13:05:01\";s:7:\"validTo\";s:19:\"2026-04-10 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3NzIvXRVfxzPUJpuvgGC\nCSd6NU899AlKt0VubIsPRb3rOeAZspsKC9HdvhZaFWHY4BmW7+ToZJZnlRS/gCGH\n77ihvblgpkbsg0gGA93Lz9GTkxSq3pglA83IIJ7WyOjeprDtFmdyrer48+p+qL+j\nLXnC9y7w0GGed8CLsXF1qM3Hr/WKajzhLibNEI9+7ZEuZfHdjbr763safKrp7c1q\n53ANcPUlidRY4Fh31X4BBQ05uUSFxw4uCWe6nKciMAaX2Z1zoFrXq8MAf5b918Df\nbYxIYV/rfEvKkFIvgujU7GIy0DacicAxi8fQKATByEoZZt3m6JT+2CsWYoUvk1uw\n1wIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:25:\"cookie_service_1770397502\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2026-02-21 16:27:25\";s:7:\"validTo\";s:19:\"2026-03-25 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzi2w8cIJe9sFpobzi+cy\nElsQG8/KTJIXU2DyxZMe3lPSUrnjnx+pGofBXmGB804UQ4mwaNXALwhmhwA/6veC\ncVHbmq8xmdU9Qi6NBkIlA+kuK7CytvSIPksgGMsRUWJR2mpXic6K4tadRSQdAIAK\nsyehHC8k8qT4Fx37+B+EHJWM1lf5xlnhxihuHas2G4Gn0o3/RJ447zW6ETiVO38q\n3gAu1Nq7p1W0jpUfKDNRS5Yyvz4rINswnwVSRXpS3ja8wORmmCxsUHt1nINrYDjB\nIYzHpHm8AhPAkGWq01ad0TZJBDtizNqTaTxNpdgD0bhmXV1JPF9814j3h+tU5u2P\nIwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:8;a:6:{s:2:\"id\";s:25:\"cookie_service_1772989501\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2026-03-23 16:27:25\";s:7:\"validTo\";s:19:\"2026-04-24 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnHRJ9QO5pmxuw3r2qhlT\ngk6TSue4n5TOYG1PqEWgsSeIcYCfICJ6RrrKlw+lG6+GvRdDdFScNNWjz38BO+2a\n8vJ1apwkWho7+wXjRQWo0hvtznR99KZme/s3D1hLT7KBc/wLXFSg+98M6icgwTfe\nk+Iuosdo0fieWaj2S8pFraN2rkm3PU+WZPdckyEVCnFds/SUxHwtkFRWK5Mgjgqh\niP0yAVTyDlUFCJyrCcSJWcZDkwqzywXGfzki9+x9U5T3xyjpEo5Ul0n3g5kM4ae0\n86rmBWMoAjlqB4Tk4pI4YZxsg9wlnmQFtdjpHMzaHyFuLPVBRgnIMiyPV9xSWjOZ\n/QIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:9;a:6:{s:2:\"id\";s:15:\"mwp1_1771855502\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2026-03-10 14:05:01\";s:7:\"validTo\";s:19:\"2026-04-11 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyj9aIb3gHoTjVok0AU3y\nfZxU+u4cIPC8mGBNVP4Tv35zL5h4RAW6Xh7G7GEDBCKog41zZBf48xAKQLbLN83d\nt7O1n2oXiXH5BkEdnklxS2Tsips+cmiSC3RCn+RXDdt0qRO6XJK8Iblu/fzNnR4B\nQ53C9t7xEAAra0jYT2daiO+QxUs4sFPN34d6WB8WPyib8QKC3aZpcjwOh2XPTGX+\nrUtSq9MvpU5tTzgMJYzmqQSfmoXSpftmpLmbWhaCG6JOV0zjRDtZIRU+ozfrrJPk\nGWC3RJ4C7xTDssmh5oNaHqh5w+dkziPWyu2hBPHCg84sl30gSMbmV54C1mQIUKAs\nSQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:10;a:6:{s:2:\"id\";s:20:\"migration_1769519102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2026-02-11 13:05:02\";s:7:\"validTo\";s:19:\"2026-03-15 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/nuwXyqvrLVExcjPPdo\n7cs5aQ7HIqJLF9wY4UkT5EljO49uBhtGr+aTvI43+v+SA19cbnbk7CLF9BRHU45r\nNgIJXV65fxdOIzgyxMa0alSz9UQGCzLN0YQoIg2kSEV0NERjxH+tPVCBVHj+tlGU\nzDfpxqxMyk1sGX9LF91P0ikyEVQ0ZbYQCe/F/AqjAdUH62eLfNTzG6H7L/lZGEqb\nFn76ohSDCP2VnypDUQ78lMqbPEKQXEv+QAepFzUJQKHv7gdLMzxvFq5V7UnhwDps\nfmvkVEIQ0H7ZucdzppecaGfokN+2hkPJMCOecBbwZkeHRanZNpB9nYq/YyIu4wpr\npwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:11;a:6:{s:2:\"id\";s:20:\"migration_1772111102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2026-03-13 13:05:02\";s:7:\"validTo\";s:19:\"2026-04-14 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApz0PQfwxfa8UawMh7snq\nBFrc7fiU8KWktEcOC1A+JRsf84oQAKttBV7YB0uiZBQAukEprHnk5rfKOhqaWrlu\nKP3kThb+PErabdSidLtz41ViWYOD5D7/qd4oeJUIYyiL9ZgqS7uo9WDi2SL63Zpf\ny4jbxOW4iGj/4llzl1XXmTzGcAcizUb/9qRA8XDXvHm+NU9AKDcQPF2a2dVgk01U\n7xtNw2ZV60eom7XCIrPMM9EdCbvtb3X//TL9sFIsB2ARXNZwDHXIxAlA6/sen8xc\nAI2Wml39VdkPPiHmrAlIG1dfS0ojdTuKhAO40sSt4+vZCVhta0jdZ44C9jOEeQvm\n2wIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}', 'on'),
(2050, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(2051, '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'),
(2142, '_transient_timeout_elementor_rollback_versions_3.35.3', '1774064668', 'off'),
(2143, '_transient_elementor_rollback_versions_3.35.3', 'a:30:{i:0;s:6:\"3.35.2\";i:1;s:6:\"3.35.1\";i:2;s:6:\"3.35.0\";i:3;s:6:\"3.34.4\";i:4;s:6:\"3.34.3\";i:5;s:6:\"3.34.2\";i:6;s:6:\"3.34.1\";i:7;s:6:\"3.34.0\";i:8;s:6:\"3.33.6\";i:9;s:6:\"3.33.5\";i:10;s:6:\"3.33.4\";i:11;s:6:\"3.33.3\";i:12;s:6:\"3.33.2\";i:13;s:6:\"3.33.1\";i:14;s:6:\"3.33.0\";i:15;s:6:\"3.32.5\";i:16;s:6:\"3.32.4\";i:17;s:6:\"3.32.3\";i:18;s:6:\"3.32.2\";i:19;s:6:\"3.32.1\";i:20;s:6:\"3.32.0\";i:21;s:6:\"3.31.5\";i:22;s:6:\"3.31.4\";i:23;s:6:\"3.31.3\";i:24;s:6:\"3.31.2\";i:25;s:6:\"3.31.1\";i:26;s:6:\"3.31.0\";i:27;s:6:\"3.30.4\";i:28;s:6:\"3.30.3\";i:29;s:6:\"3.30.2\";}', 'off'),
(2131, 'elementor-custom-breakpoints-files', 'a:29:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1773312950;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1773312950;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1773312950;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1773312950;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1773312950;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1773312950;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1773312950;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1773312950;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1773312950;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1773312950;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1773312950;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1773312950;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1773312950;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1773312950;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1773312950;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1773312950;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1773312950;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1773312950;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1773312950;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1773312950;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1773312950;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1773312950;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1773312950;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1773312950;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1773312950;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1773312950;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1773312950;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1773312950;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1773312950;}}', 'auto'),
(1146, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1771288907;s:5:\"value\";s:2291:\"{\"new_version\":\"2.12.16\",\"stable_version\":\"2.12.16\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2026-02-10 11:16:57\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3MTQ3MDcwNzo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OmM2ZWZhMjkwOTM2NDZmNzczYTRiMDIzNWU0Zjg4Y2IyOmh0dHBzQC8vbXJhcmlmLm1lL2F2YWx1bWNhcmU6MA==\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3MTQ3MDcwNzo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OmM2ZWZhMjkwOTM2NDZmNzczYTRiMDIzNWU0Zjg4Y2IyOmh0dHBzQC8vbXJhcmlmLm1lL2F2YWx1bWNhcmU6MA==\",\"sections\":{\"changelog\":\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-128x128.png\",\"2x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-256x256.png\"},\"contributors\":{\"ideaboxcreations\":{\"display_name\":\"ideaboxcreations\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ideaboxcreations\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ideaboxcreations\"},\"bloompixel\":{\"display_name\":\"bloompixel\",\"profile\":\"\\/\\/profiles.wordpress.org\\/bloompixel\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=bloompixel\"},\"simrandeep\":{\"display_name\":\"simrandeep\",\"profile\":\"\\/\\/profiles.wordpress.org\\/simrandeep\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=simrandeep\"},\"ibachal\":{\"display_name\":\"ibachal\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ibachal\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ibachal\"},\"puneetsahalot\":{\"display_name\":\"puneetsahalot\",\"profile\":\"\\/\\/profiles.wordpress.org\\/puneetsahalot\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=puneetsahalot\"}},\"tested\":\"6.7.1\",\"changelog\":[\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\"}\";}', 'off'),
(857, '_transient_health-check-site-status-result', '{\"good\":21,\"recommended\":1,\"critical\":3}', 'on'),
(835, '_transient_is_multi_author', '0', 'on');

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

--
-- Table structure for table `wpa_postmeta`
--

CREATE TABLE `wpa_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 `wpa_postmeta`
--

INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 6, '_elementor_edit_mode', 'builder'),
(4, 6, '_elementor_template_type', 'kit'),
(11, 10, '_edit_last', '1'),
(12, 10, '_edit_lock', '1770799020:1'),
(13, 10, '_wp_page_template', 'default'),
(20, 10, 'ast-featured-img', 'disabled'),
(16, 10, 'site-sidebar-layout', 'no-sidebar'),
(17, 10, 'ast-site-content-layout', 'full-width-container'),
(18, 10, 'site-content-style', 'default'),
(19, 10, 'site-sidebar-style', 'default'),
(21, 10, 'astra-migrate-meta-layouts', 'set'),
(22, 10, 'ast-breadcrumbs-content', 'disabled'),
(23, 10, 'theme-transparent-header-meta', 'default'),
(24, 10, '_elementor_edit_mode', 'builder'),
(25, 10, '_astra_content_layout_flag', 'disabled'),
(26, 10, 'ast-title-bar-display', 'disabled'),
(27, 10, '_elementor_template_type', 'wp-page'),
(28, 10, '_elementor_version', '3.35.3'),
(29, 10, '_elementor_pro_version', '3.25.4'),
(52, 10, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(40, 13, '_wp_page_template', 'elementor_header_footer'),
(41, 13, '_elementor_edit_mode', 'builder'),
(42, 13, '_elementor_template_type', 'wp-page'),
(43, 13, '_elementor_version', '3.35.3'),
(44, 13, '_elementor_pro_version', '3.25.4'),
(45, 13, '_elementor_page_settings', 'a:0:{}'),
(46, 14, '_wp_page_template', 'elementor_header_footer'),
(47, 14, '_elementor_edit_mode', 'builder'),
(48, 14, '_elementor_template_type', 'wp-page'),
(49, 14, '_elementor_version', '3.35.3'),
(50, 14, '_elementor_pro_version', '3.25.4'),
(51, 14, '_elementor_page_settings', 'a:0:{}'),
(53, 15, '_wp_page_template', 'elementor_header_footer'),
(54, 15, '_elementor_edit_mode', 'builder'),
(55, 15, '_elementor_template_type', 'wp-page'),
(56, 15, '_elementor_version', '3.35.3'),
(57, 15, '_elementor_pro_version', '3.25.4'),
(58, 15, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right at Home Los Angeles Westside\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Need help right now? Call us anytime at\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(87, 19, '_wp_page_template', 'default'),
(88, 19, '_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:11:\"Avalum Care\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(125, 25, '_wp_page_template', 'elementor_header_footer'),
(61, 16, '_elementor_edit_mode', 'builder'),
(62, 16, '_elementor_template_type', 'kit'),
(64, 6, '_wp_page_template', 'default'),
(65, 6, '_elementor_page_settings', 'a:20:{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:11:\"Avalum Care\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";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;s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;}'),
(89, 19, '_elementor_data', '[]'),
(90, 19, '_elementor_version', '3.35.3'),
(91, 19, '_elementor_pro_version', '3.25.4'),
(68, 6, '_edit_lock', '1770724071:1'),
(69, 17, '_elementor_edit_mode', 'builder'),
(70, 17, '_elementor_template_type', 'kit'),
(300, 47, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(301, 47, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(72, 17, '_wp_page_template', 'default'),
(73, 17, '_elementor_page_settings', 'a:1:{s:16:\"site_description\";s:7:\"Welcome\";}'),
(86, 19, '_elementor_template_type', 'kit'),
(74, 6, '_elementor_data', '[]'),
(75, 18, '_elementor_edit_mode', 'builder'),
(76, 18, '_elementor_template_type', 'kit'),
(78, 18, '_wp_page_template', 'default'),
(79, 18, '_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:11:\"Avalum Care\";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;}'),
(80, 18, '_elementor_data', '[]'),
(85, 19, '_elementor_edit_mode', 'builder'),
(82, 6, '_elementor_version', '3.35.3'),
(83, 6, '_elementor_pro_version', '3.25.4'),
(151, 28, '_wp_page_template', 'elementor_header_footer'),
(135, 26, '_wp_page_template', 'elementor_header_footer'),
(136, 26, '_elementor_edit_mode', 'builder'),
(137, 26, '_elementor_template_type', 'wp-page'),
(138, 26, '_elementor_version', '3.35.3'),
(139, 26, '_elementor_pro_version', '3.25.4'),
(140, 26, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Need help right now? Call us anytime at\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(105, 23, '_wp_page_template', 'elementor_header_footer'),
(106, 23, '_elementor_edit_mode', 'builder'),
(107, 23, '_elementor_template_type', 'wp-page'),
(108, 23, '_elementor_version', '3.35.3'),
(109, 23, '_elementor_pro_version', '3.25.4'),
(110, 23, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right at Home Los Angeles Westside\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Need help right now? Call us anytime at\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(111, 23, '_elementor_page_settings', 'a:0:{}'),
(115, 24, '_wp_page_template', 'elementor_header_footer'),
(116, 24, '_elementor_edit_mode', 'builder'),
(117, 24, '_elementor_template_type', 'wp-page'),
(118, 24, '_elementor_version', '3.35.3'),
(119, 24, '_elementor_pro_version', '3.25.4'),
(120, 24, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Right at Home Los Angeles Westside\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Need help right now? Call us anytime at\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(121, 24, '_elementor_page_settings', 'a:0:{}'),
(126, 25, '_elementor_edit_mode', 'builder'),
(127, 25, '_elementor_template_type', 'wp-page'),
(128, 25, '_elementor_version', '3.35.3'),
(129, 25, '_elementor_pro_version', '3.25.4'),
(130, 25, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Need help right now? Call us anytime at\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(276, 44, '_elementor_page_settings', 'a:0:{}'),
(277, 45, '_wp_page_template', 'elementor_header_footer'),
(278, 45, '_elementor_edit_mode', 'builder'),
(279, 45, '_elementor_template_type', 'wp-page'),
(280, 45, '_elementor_version', '3.35.3'),
(281, 45, '_elementor_pro_version', '3.25.4'),
(282, 45, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(142, 26, '_elementor_page_settings', 'a:0:{}'),
(143, 27, '_wp_page_template', 'elementor_header_footer'),
(144, 27, '_elementor_edit_mode', 'builder'),
(145, 27, '_elementor_template_type', 'wp-page'),
(146, 27, '_elementor_version', '3.35.3'),
(147, 27, '_elementor_pro_version', '3.25.4'),
(148, 27, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Need help right now? Call us anytime at\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(150, 27, '_elementor_page_settings', 'a:0:{}'),
(152, 28, '_elementor_edit_mode', 'builder'),
(153, 28, '_elementor_template_type', 'wp-page'),
(154, 28, '_elementor_version', '3.35.3'),
(155, 28, '_elementor_pro_version', '3.25.4'),
(156, 28, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(268, 43, '_wp_attached_file', '2026/02/banner-17.jpeg'),
(269, 43, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:880;s:4:\"file\";s:22:\"2026/02/banner-17.jpeg\";s:8:\"filesize\";i:179575;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"banner-17-300x132.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14181;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"banner-17-1024x451.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92476;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"banner-17-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"banner-17-768x338.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59988;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"banner-17-1536x676.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171585;}}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:{}}}'),
(270, 44, '_wp_page_template', 'elementor_header_footer'),
(271, 44, '_elementor_edit_mode', 'builder'),
(272, 44, '_elementor_template_type', 'wp-page'),
(273, 44, '_elementor_version', '3.35.3'),
(274, 44, '_elementor_pro_version', '3.25.4'),
(275, 44, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(160, 29, '_edit_last', '1'),
(161, 29, '_edit_lock', '1770791483:1'),
(162, 29, '_wp_page_template', 'elementor_header_footer'),
(169, 29, 'ast-featured-img', 'disabled'),
(165, 29, 'site-sidebar-layout', 'no-sidebar'),
(166, 29, 'ast-site-content-layout', 'full-width-container'),
(167, 29, 'site-content-style', 'default'),
(168, 29, 'site-sidebar-style', 'default'),
(170, 29, 'astra-migrate-meta-layouts', 'set'),
(171, 29, 'ast-breadcrumbs-content', 'disabled'),
(172, 29, 'theme-transparent-header-meta', 'default'),
(173, 31, '_edit_last', '1'),
(174, 31, '_edit_lock', '1770794509:1'),
(175, 31, '_wp_page_template', 'elementor_header_footer'),
(182, 31, 'ast-featured-img', 'disabled'),
(178, 31, 'site-sidebar-layout', 'no-sidebar'),
(179, 31, 'ast-site-content-layout', 'full-width-container'),
(180, 31, 'site-content-style', 'default'),
(181, 31, 'site-sidebar-style', 'default'),
(183, 31, 'astra-migrate-meta-layouts', 'set'),
(184, 31, 'ast-breadcrumbs-content', 'disabled'),
(185, 31, 'theme-transparent-header-meta', 'default'),
(186, 33, '_edit_last', '1'),
(187, 33, '_edit_lock', '1770797626:1'),
(188, 33, '_wp_page_template', 'elementor_header_footer'),
(195, 33, 'ast-featured-img', 'disabled'),
(191, 33, 'site-sidebar-layout', 'no-sidebar'),
(192, 33, 'ast-site-content-layout', 'full-width-container'),
(193, 33, 'site-content-style', 'default'),
(194, 33, 'site-sidebar-style', 'default'),
(196, 33, 'astra-migrate-meta-layouts', 'set'),
(197, 33, 'ast-breadcrumbs-content', 'disabled'),
(198, 33, 'theme-transparent-header-meta', 'default'),
(199, 35, '_edit_last', '1'),
(200, 35, '_edit_lock', '1770798295:1'),
(201, 35, '_wp_page_template', 'elementor_header_footer'),
(208, 35, 'ast-featured-img', 'disabled'),
(204, 35, 'site-sidebar-layout', 'no-sidebar'),
(205, 35, 'ast-site-content-layout', 'full-width-container'),
(206, 35, 'site-content-style', 'default'),
(207, 35, 'site-sidebar-style', 'default'),
(209, 35, 'astra-migrate-meta-layouts', 'set'),
(210, 35, 'ast-breadcrumbs-content', 'disabled'),
(211, 35, 'theme-transparent-header-meta', 'default'),
(212, 37, '_menu_item_type', 'post_type'),
(213, 37, '_menu_item_menu_item_parent', '0'),
(214, 37, '_menu_item_object_id', '10'),
(215, 37, '_menu_item_object', 'page'),
(216, 37, '_menu_item_target', ''),
(217, 37, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(218, 37, '_menu_item_xfn', ''),
(219, 37, '_menu_item_url', ''),
(221, 38, '_menu_item_type', 'post_type'),
(222, 38, '_menu_item_menu_item_parent', '0'),
(223, 38, '_menu_item_object_id', '29'),
(224, 38, '_menu_item_object', 'page'),
(225, 38, '_menu_item_target', ''),
(226, 38, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(227, 38, '_menu_item_xfn', ''),
(228, 38, '_menu_item_url', ''),
(230, 39, '_menu_item_type', 'post_type'),
(231, 39, '_menu_item_menu_item_parent', '0'),
(232, 39, '_menu_item_object_id', '35'),
(233, 39, '_menu_item_object', 'page'),
(234, 39, '_menu_item_target', ''),
(235, 39, '_menu_item_classes', 'a:1:{i:0;s:12:\"contact_item\";}'),
(236, 39, '_menu_item_xfn', ''),
(237, 39, '_menu_item_url', ''),
(239, 40, '_menu_item_type', 'post_type'),
(240, 40, '_menu_item_menu_item_parent', '0'),
(241, 40, '_menu_item_object_id', '33'),
(242, 40, '_menu_item_object', 'page'),
(243, 40, '_menu_item_target', ''),
(244, 40, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(245, 40, '_menu_item_xfn', ''),
(246, 40, '_menu_item_url', ''),
(248, 41, '_menu_item_type', 'post_type'),
(249, 41, '_menu_item_menu_item_parent', '0'),
(250, 41, '_menu_item_object_id', '2'),
(251, 41, '_menu_item_object', 'page'),
(252, 41, '_menu_item_target', ''),
(253, 41, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(254, 41, '_menu_item_xfn', ''),
(255, 41, '_menu_item_url', ''),
(256, 41, '_menu_item_orphaned', '1770725771'),
(257, 42, '_menu_item_type', 'post_type'),
(258, 42, '_menu_item_menu_item_parent', '0'),
(259, 42, '_menu_item_object_id', '31'),
(260, 42, '_menu_item_object', 'page'),
(261, 42, '_menu_item_target', ''),
(262, 42, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(263, 42, '_menu_item_xfn', ''),
(264, 42, '_menu_item_url', ''),
(283, 45, '_elementor_page_settings', 'a:0:{}'),
(284, 46, '_wp_page_template', 'elementor_header_footer'),
(285, 46, '_elementor_edit_mode', 'builder'),
(286, 46, '_elementor_template_type', 'wp-page'),
(287, 46, '_elementor_version', '3.35.3'),
(288, 46, '_elementor_pro_version', '3.25.4'),
(289, 46, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(296, 47, '_wp_page_template', 'elementor_header_footer'),
(297, 47, '_elementor_edit_mode', 'builder'),
(298, 47, '_elementor_template_type', 'wp-page'),
(299, 47, '_elementor_version', '3.35.3'),
(360, 53, '_wp_page_template', 'elementor_header_footer'),
(361, 53, '_elementor_edit_mode', 'builder'),
(362, 53, '_elementor_template_type', 'wp-page'),
(329, 50, '_wp_page_template', 'elementor_header_footer'),
(330, 50, '_elementor_edit_mode', 'builder'),
(331, 50, '_elementor_template_type', 'wp-page'),
(332, 50, '_elementor_version', '3.35.3'),
(333, 50, '_elementor_pro_version', '3.25.4'),
(334, 50, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(303, 47, '_elementor_page_settings', 'a:0:{}'),
(306, 48, '_wp_page_template', 'elementor_header_footer'),
(307, 48, '_elementor_edit_mode', 'builder'),
(308, 48, '_elementor_template_type', 'wp-page'),
(309, 48, '_elementor_version', '3.35.3'),
(310, 48, '_elementor_pro_version', '3.25.4'),
(311, 48, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}]},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(313, 48, '_elementor_page_settings', 'a:0:{}'),
(316, 49, '_wp_page_template', 'elementor_header_footer'),
(317, 49, '_elementor_edit_mode', 'builder'),
(318, 49, '_elementor_template_type', 'wp-page'),
(319, 49, '_elementor_version', '3.35.3'),
(320, 49, '_elementor_pro_version', '3.25.4'),
(321, 49, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(363, 53, '_elementor_version', '3.35.3'),
(364, 53, '_elementor_pro_version', '3.25.4'),
(365, 53, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(336, 50, '_elementor_page_settings', 'a:0:{}'),
(339, 51, '_wp_page_template', 'elementor_header_footer'),
(340, 51, '_elementor_edit_mode', 'builder'),
(341, 51, '_elementor_template_type', 'wp-page'),
(342, 51, '_elementor_version', '3.35.3'),
(343, 51, '_elementor_pro_version', '3.25.4'),
(344, 51, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(346, 51, '_elementor_page_settings', 'a:0:{}'),
(376, 55, '_wp_page_template', 'elementor_header_footer'),
(349, 52, '_wp_page_template', 'elementor_header_footer'),
(350, 52, '_elementor_edit_mode', 'builder'),
(351, 52, '_elementor_template_type', 'wp-page'),
(352, 52, '_elementor_version', '3.35.3'),
(353, 52, '_elementor_pro_version', '3.25.4'),
(354, 52, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(367, 53, '_elementor_page_settings', 'a:0:{}'),
(368, 54, '_wp_page_template', 'elementor_header_footer'),
(369, 54, '_elementor_edit_mode', 'builder'),
(370, 54, '_elementor_template_type', 'wp-page'),
(371, 54, '_elementor_version', '3.35.3'),
(372, 54, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(373, 54, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(375, 54, '_elementor_page_settings', 'a:0:{}'),
(377, 55, '_elementor_edit_mode', 'builder'),
(378, 55, '_elementor_template_type', 'wp-page'),
(379, 55, '_elementor_version', '3.35.3'),
(380, 55, '_elementor_pro_version', '3.25.4'),
(381, 55, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(387, 56, '_wp_page_template', 'elementor_header_footer'),
(388, 56, '_elementor_edit_mode', 'builder'),
(389, 56, '_elementor_template_type', 'wp-page'),
(390, 56, '_elementor_version', '3.35.3'),
(391, 56, '_elementor_pro_version', '3.25.4'),
(392, 56, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(422, 60, '_wp_page_template', 'elementor_header_footer'),
(423, 60, '_elementor_edit_mode', 'builder'),
(424, 60, '_elementor_template_type', 'wp-page'),
(425, 60, '_elementor_version', '3.35.3'),
(426, 60, '_elementor_pro_version', '3.25.4'),
(427, 60, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(490, 67, '_wp_page_template', 'elementor_header_footer'),
(491, 67, '_elementor_edit_mode', 'builder'),
(394, 56, '_elementor_page_settings', 'a:0:{}'),
(397, 57, '_wp_page_template', 'elementor_header_footer'),
(398, 57, '_elementor_edit_mode', 'builder'),
(399, 57, '_elementor_template_type', 'wp-page'),
(400, 57, '_elementor_version', '3.35.3'),
(401, 57, '_elementor_pro_version', '3.25.4'),
(402, 57, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(404, 57, '_elementor_page_settings', 'a:0:{}'),
(407, 58, '_wp_page_template', 'elementor_header_footer'),
(408, 58, '_elementor_edit_mode', 'builder'),
(409, 58, '_elementor_template_type', 'wp-page'),
(410, 58, '_elementor_version', '3.35.3'),
(411, 58, '_elementor_pro_version', '3.25.4'),
(412, 58, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(457, 64, '_wp_page_template', 'elementor_header_footer'),
(458, 64, '_elementor_edit_mode', 'builder'),
(459, 64, '_elementor_template_type', 'wp-page'),
(460, 64, '_elementor_version', '3.35.3'),
(461, 64, '_elementor_pro_version', '3.25.4'),
(462, 64, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(429, 60, '_elementor_page_settings', 'a:0:{}'),
(432, 61, '_wp_page_template', 'elementor_header_footer'),
(433, 61, '_elementor_edit_mode', 'builder'),
(434, 61, '_elementor_template_type', 'wp-page'),
(435, 61, '_elementor_version', '3.35.3'),
(436, 61, '_elementor_pro_version', '3.25.4'),
(437, 61, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(439, 61, '_elementor_page_settings', 'a:0:{}'),
(442, 62, '_wp_page_template', 'elementor_header_footer'),
(443, 62, '_elementor_edit_mode', 'builder'),
(444, 62, '_elementor_template_type', 'wp-page'),
(445, 62, '_elementor_version', '3.35.3'),
(446, 62, '_elementor_pro_version', '3.25.4'),
(447, 62, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(510, 69, '_wp_page_template', 'elementor_header_footer'),
(492, 67, '_elementor_template_type', 'wp-page'),
(493, 67, '_elementor_version', '3.35.3'),
(494, 67, '_elementor_pro_version', '3.25.4'),
(495, 67, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(455, 63, '_wp_attached_file', '2026/02/banner-18.jpeg'),
(456, 63, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1054;s:4:\"file\";s:22:\"2026/02/banner-18.jpeg\";s:8:\"filesize\";i:121139;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"banner-18-300x158.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11227;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"banner-18-1024x540.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"banner-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6067;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"banner-18-768x405.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44718;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"banner-18-1536x809.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129098;}}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:{}}}'),
(464, 64, '_elementor_page_settings', 'a:0:{}'),
(467, 65, '_wp_page_template', 'elementor_header_footer'),
(468, 65, '_elementor_edit_mode', 'builder'),
(469, 65, '_elementor_template_type', 'wp-page'),
(470, 65, '_elementor_version', '3.35.3'),
(471, 65, '_elementor_pro_version', '3.25.4'),
(472, 65, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(474, 65, '_elementor_page_settings', 'a:0:{}'),
(477, 66, '_wp_page_template', 'elementor_header_footer'),
(478, 66, '_elementor_edit_mode', 'builder'),
(479, 66, '_elementor_template_type', 'wp-page'),
(480, 66, '_elementor_version', '3.35.3'),
(481, 66, '_elementor_pro_version', '3.25.4'),
(482, 66, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(710, 90, '_wp_page_template', 'elementor_header_footer'),
(711, 90, '_elementor_edit_mode', 'builder'),
(712, 90, '_elementor_template_type', 'wp-page'),
(713, 90, '_elementor_version', '3.35.3'),
(714, 90, '_elementor_pro_version', '3.25.4'),
(715, 90, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(776, 96, '_wp_page_template', 'elementor_header_footer'),
(1048, 118, '_wp_page_template', 'elementor_header_footer'),
(497, 67, '_elementor_page_settings', 'a:0:{}'),
(500, 68, '_wp_page_template', 'elementor_header_footer'),
(501, 68, '_elementor_edit_mode', 'builder'),
(502, 68, '_elementor_template_type', 'wp-page'),
(503, 68, '_elementor_version', '3.35.3'),
(504, 68, '_elementor_pro_version', '3.25.4'),
(505, 68, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.87,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(507, 68, '_elementor_page_settings', 'a:0:{}'),
(511, 69, '_elementor_edit_mode', 'builder'),
(512, 69, '_elementor_template_type', 'wp-page'),
(513, 69, '_elementor_version', '3.35.3'),
(514, 69, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(515, 69, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(763, 95, '_wp_page_template', 'elementor_header_footer'),
(743, 93, '_wp_page_template', 'elementor_header_footer'),
(744, 93, '_elementor_edit_mode', 'builder'),
(745, 93, '_elementor_template_type', 'wp-page'),
(746, 93, '_elementor_version', '3.35.3'),
(747, 93, '_elementor_pro_version', '3.25.4'),
(748, 93, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1095, 122, '_wp_page_template', 'elementor_header_footer'),
(523, 70, '_elementor_edit_mode', 'builder'),
(524, 70, '_elementor_template_type', 'header'),
(525, 71, '_elementor_edit_mode', 'builder'),
(526, 71, '_elementor_template_type', 'header'),
(527, 70, '_elementor_version', '3.35.3'),
(528, 70, '_elementor_pro_version', '3.25.4'),
(529, 70, '_astra_content_layout_flag', 'disabled'),
(531, 70, 'ast-title-bar-display', 'disabled'),
(532, 70, 'ast-featured-img', 'disabled'),
(533, 70, 'ast-site-content-layout', 'full-width-container'),
(534, 70, 'site-sidebar-layout', 'no-sidebar'),
(544, 70, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#8cca1f\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#8cca1f\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#E9EBED\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(536, 70, '_edit_lock', '1770799104:1'),
(537, 72, '_wp_attached_file', '2026/02/phone-call_3779208.svg'),
(538, 72, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1414;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(540, 73, '_wp_attached_file', '2026/02/email_12259156.svg'),
(541, 73, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:666;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(543, 70, '_wp_page_template', 'default'),
(545, 74, '_elementor_edit_mode', 'builder'),
(546, 74, '_elementor_template_type', 'header'),
(547, 74, '_elementor_version', '3.35.3'),
(548, 74, '_elementor_pro_version', '3.25.4'),
(549, 74, '_wp_page_template', 'default'),
(550, 74, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(621, 83, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(626, 84, '_elementor_edit_mode', 'builder'),
(627, 84, '_elementor_template_type', 'header'),
(628, 84, '_elementor_version', '3.35.3'),
(629, 84, '_elementor_pro_version', '3.25.4'),
(630, 84, '_wp_page_template', 'default'),
(631, 84, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(559, 70, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(560, 76, '_wp_attached_file', '2026/02/WhatsApp_Image_2026-02-10_at_17.57.48-removebg-preview.png'),
(561, 76, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:499;s:6:\"height\";i:500;s:4:\"file\";s:66:\"2026/02/WhatsApp_Image_2026-02-10_at_17.57.48-removebg-preview.png\";s:8:\"filesize\";i:172901;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"WhatsApp_Image_2026-02-10_at_17.57.48-removebg-preview-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"WhatsApp_Image_2026-02-10_at_17.57.48-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19679;}}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:{}}}'),
(575, 78, '_wp_attached_file', '2026/02/logo-7.png'),
(576, 78, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:331;s:6:\"height\";i:363;s:4:\"file\";s:18:\"2026/02/logo-7.png\";s:8:\"filesize\";i:140578;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"logo-7-274x300.png\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100772;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36326;}}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:{}}}'),
(587, 79, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(602, 82, '_elementor_edit_mode', 'builder'),
(603, 82, '_elementor_template_type', 'header'),
(604, 82, '_elementor_version', '3.35.3'),
(605, 82, '_elementor_pro_version', '3.25.4'),
(606, 82, '_wp_page_template', 'default'),
(607, 82, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(582, 79, '_elementor_edit_mode', 'builder'),
(583, 79, '_elementor_template_type', 'header'),
(584, 79, '_elementor_version', '3.35.3'),
(585, 79, '_elementor_pro_version', '3.25.4'),
(586, 79, '_wp_page_template', 'default'),
(590, 79, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:75;s:3:\"url\";s:131:\"https://mrarif.me/avalumcare/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_70_2026-02-10-12-46-40_5132055c.png\";}'),
(591, 79, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(614, 83, '_elementor_edit_mode', 'builder'),
(615, 83, '_elementor_template_type', 'header'),
(616, 83, '_elementor_version', '3.35.3'),
(617, 83, '_elementor_pro_version', '3.25.4'),
(618, 83, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(619, 83, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(597, 80, '_wp_attached_file', '2026/02/fav-7.png'),
(598, 80, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:540;s:6:\"height\";i:534;s:4:\"file\";s:17:\"2026/02/fav-7.png\";s:8:\"filesize\";i:281915;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"fav-7-300x297.png\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"fav-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34731;}}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:{}}}'),
(599, 81, '_wp_attached_file', '2026/02/cropped-fav-7.png'),
(600, 81, '_wp_attachment_context', 'site-icon'),
(601, 81, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2026/02/cropped-fav-7.png\";s:8:\"filesize\";i:258727;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109682;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34956;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92368;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52629;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:25:\"cropped-fav-7-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47330;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:23:\"cropped-fav-7-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2683;}}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:{}}}'),
(609, 82, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(640, 85, '_elementor_edit_mode', 'builder'),
(641, 85, '_elementor_template_type', 'header'),
(642, 85, '_elementor_version', '3.35.3'),
(643, 85, '_elementor_pro_version', '3.25.4'),
(644, 85, '_wp_page_template', 'default'),
(645, 85, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1147, 126, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1152, 127, '_elementor_edit_mode', 'builder'),
(1153, 127, '_elementor_template_type', 'header'),
(1154, 127, '_elementor_version', '3.35.3'),
(633, 84, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(654, 86, '_elementor_edit_mode', 'builder'),
(655, 86, '_elementor_template_type', 'header'),
(656, 86, '_elementor_version', '3.35.3'),
(657, 86, '_elementor_pro_version', '3.25.4'),
(658, 86, '_wp_page_template', 'default'),
(659, 86, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(647, 85, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(668, 87, '_elementor_edit_mode', 'builder'),
(669, 87, '_elementor_template_type', 'header'),
(670, 87, '_elementor_version', '3.35.3'),
(671, 87, '_elementor_pro_version', '3.25.4'),
(672, 87, '_wp_page_template', 'default'),
(673, 87, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(661, 86, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(682, 88, '_elementor_edit_mode', 'builder'),
(683, 88, '_elementor_template_type', 'header'),
(684, 88, '_elementor_version', '3.35.3'),
(685, 88, '_elementor_pro_version', '3.25.4'),
(686, 88, '_wp_page_template', 'default'),
(687, 88, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(675, 87, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(696, 89, '_elementor_edit_mode', 'builder'),
(697, 89, '_elementor_template_type', 'header'),
(698, 89, '_elementor_version', '3.35.3'),
(699, 89, '_elementor_pro_version', '3.25.4'),
(700, 89, '_wp_page_template', 'default'),
(701, 89, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}]},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(689, 88, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(809, 99, '_elementor_edit_mode', 'builder'),
(810, 99, '_elementor_template_type', 'header'),
(811, 99, '_elementor_version', '3.35.3'),
(812, 99, '_elementor_pro_version', '3.25.4'),
(813, 99, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(814, 99, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(703, 89, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(823, 100, '_elementor_edit_mode', 'builder'),
(824, 100, '_elementor_template_type', 'header'),
(825, 100, '_elementor_version', '3.35.3'),
(826, 100, '_elementor_pro_version', '3.25.4'),
(827, 100, '_wp_page_template', 'default'),
(828, 100, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(717, 90, '_elementor_page_settings', 'a:0:{}'),
(720, 91, '_wp_page_template', 'elementor_header_footer'),
(721, 91, '_elementor_edit_mode', 'builder'),
(722, 91, '_elementor_template_type', 'wp-page'),
(723, 91, '_elementor_version', '3.35.3'),
(724, 91, '_elementor_pro_version', '3.25.4'),
(725, 91, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#00000080\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(727, 91, '_elementor_page_settings', 'a:0:{}'),
(730, 92, '_wp_page_template', 'elementor_header_footer'),
(731, 92, '_elementor_edit_mode', 'builder'),
(732, 92, '_elementor_template_type', 'wp-page'),
(733, 92, '_elementor_version', '3.35.3'),
(734, 92, '_elementor_pro_version', '3.25.4'),
(735, 92, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(777, 96, '_elementor_edit_mode', 'builder'),
(778, 96, '_elementor_template_type', 'wp-page'),
(779, 96, '_elementor_version', '3.35.3'),
(780, 96, '_elementor_pro_version', '3.25.4'),
(781, 96, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#1B1B1D96\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(750, 93, '_elementor_page_settings', 'a:0:{}'),
(753, 94, '_wp_page_template', 'elementor_header_footer'),
(754, 94, '_elementor_edit_mode', 'builder'),
(755, 94, '_elementor_template_type', 'wp-page'),
(756, 94, '_elementor_version', '3.35.3'),
(757, 94, '_elementor_pro_version', '3.25.4'),
(758, 94, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(760, 94, '_elementor_page_settings', 'a:0:{}'),
(764, 95, '_elementor_edit_mode', 'builder'),
(765, 95, '_elementor_template_type', 'wp-page'),
(766, 95, '_elementor_version', '3.35.3'),
(767, 95, '_elementor_pro_version', '3.25.4'),
(768, 95, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#1B1B1D96\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(865, 103, '_wp_page_template', 'elementor_header_footer'),
(866, 103, '_elementor_edit_mode', 'builder'),
(867, 103, '_elementor_template_type', 'wp-page'),
(868, 103, '_elementor_version', '3.35.3'),
(869, 103, '_elementor_pro_version', '3.25.4'),
(870, 103, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#1B1B1D96\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(783, 96, '_elementor_page_settings', 'a:0:{}'),
(786, 97, '_wp_page_template', 'elementor_header_footer'),
(787, 97, '_elementor_edit_mode', 'builder'),
(788, 97, '_elementor_template_type', 'wp-page'),
(789, 97, '_elementor_version', '3.35.3'),
(790, 97, '_elementor_pro_version', '3.25.4'),
(791, 97, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#1B1B1D96\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}]},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(793, 97, '_elementor_page_settings', 'a:0:{}'),
(796, 98, '_wp_page_template', 'elementor_header_footer'),
(797, 98, '_elementor_edit_mode', 'builder'),
(798, 98, '_elementor_template_type', 'wp-page'),
(799, 98, '_elementor_version', '3.35.3'),
(800, 98, '_elementor_pro_version', '3.25.4'),
(801, 98, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#1B1B1D96\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(918, 108, '_wp_page_template', 'elementor_header_footer'),
(898, 106, '_wp_page_template', 'elementor_header_footer'),
(899, 106, '_elementor_edit_mode', 'builder'),
(900, 106, '_elementor_template_type', 'wp-page'),
(901, 106, '_elementor_version', '3.35.3'),
(902, 106, '_elementor_pro_version', '3.25.4'),
(903, 106, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1049, 118, '_elementor_edit_mode', 'builder'),
(816, 99, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(837, 101, '_elementor_edit_mode', 'builder'),
(838, 101, '_elementor_template_type', 'header'),
(839, 101, '_elementor_version', '3.35.3'),
(840, 101, '_elementor_pro_version', '3.25.4'),
(841, 101, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(842, 101, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(830, 100, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(851, 102, '_elementor_edit_mode', 'builder'),
(852, 102, '_elementor_template_type', 'header'),
(853, 102, '_elementor_version', '3.35.3'),
(854, 102, '_elementor_pro_version', '3.25.4'),
(855, 102, '_wp_page_template', 'default'),
(856, 102, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(844, 101, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(964, 112, '_elementor_edit_mode', 'builder'),
(965, 112, '_elementor_template_type', 'header'),
(966, 112, '_elementor_version', '3.35.3'),
(967, 112, '_elementor_pro_version', '3.25.4'),
(968, 112, '_wp_page_template', 'default'),
(969, 112, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-116\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"10\",\"bottom\":\"4\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(858, 102, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(978, 113, '_elementor_edit_mode', 'builder'),
(979, 113, '_elementor_template_type', 'header'),
(980, 113, '_elementor_version', '3.35.3'),
(981, 113, '_elementor_pro_version', '3.25.4'),
(982, 113, '_wp_page_template', 'default'),
(983, 113, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-111\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"10\",\"bottom\":\"4\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(872, 103, '_elementor_page_settings', 'a:0:{}'),
(875, 104, '_wp_page_template', 'elementor_header_footer'),
(876, 104, '_elementor_edit_mode', 'builder'),
(877, 104, '_elementor_template_type', 'wp-page'),
(878, 104, '_elementor_version', '3.35.3'),
(879, 104, '_elementor_pro_version', '3.25.4'),
(880, 104, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#191919\",\"background_overlay_color_b\":\"#1B1B1D96\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(882, 104, '_elementor_page_settings', 'a:0:{}'),
(885, 105, '_wp_page_template', 'elementor_header_footer'),
(886, 105, '_elementor_edit_mode', 'builder'),
(887, 105, '_elementor_template_type', 'wp-page'),
(888, 105, '_elementor_version', '3.35.3'),
(889, 105, '_elementor_pro_version', '3.25.4'),
(890, 105, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(931, 109, '_wp_page_template', 'elementor_header_footer'),
(932, 109, '_elementor_edit_mode', 'builder'),
(933, 109, '_elementor_template_type', 'wp-page'),
(934, 109, '_elementor_version', '3.35.3'),
(935, 109, '_elementor_pro_version', '3.25.4'),
(936, 109, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(905, 106, '_elementor_page_settings', 'a:0:{}'),
(908, 107, '_wp_page_template', 'elementor_header_footer'),
(909, 107, '_elementor_edit_mode', 'builder'),
(910, 107, '_elementor_template_type', 'wp-page'),
(911, 107, '_elementor_version', '3.35.3'),
(912, 107, '_elementor_pro_version', '3.25.4'),
(913, 107, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(915, 107, '_elementor_page_settings', 'a:0:{}'),
(919, 108, '_elementor_edit_mode', 'builder'),
(920, 108, '_elementor_template_type', 'wp-page'),
(921, 108, '_elementor_version', '3.35.3'),
(922, 108, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(923, 108, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1050, 118, '_elementor_template_type', 'wp-page'),
(1051, 118, '_elementor_version', '3.35.3'),
(1052, 118, '_elementor_pro_version', '3.25.4'),
(1053, 118, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(938, 109, '_elementor_page_settings', 'a:0:{}'),
(941, 110, '_wp_page_template', 'elementor_header_footer'),
(942, 110, '_elementor_edit_mode', 'builder'),
(943, 110, '_elementor_template_type', 'wp-page'),
(944, 110, '_elementor_version', '3.35.3'),
(945, 110, '_elementor_pro_version', '3.25.4'),
(946, 110, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(948, 110, '_elementor_page_settings', 'a:0:{}'),
(951, 111, '_wp_page_template', 'elementor_header_footer'),
(952, 111, '_elementor_edit_mode', 'builder'),
(953, 111, '_elementor_template_type', 'wp-page'),
(954, 111, '_elementor_version', '3.35.3'),
(955, 111, '_elementor_pro_version', '3.25.4'),
(956, 111, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1115, 124, '_wp_page_template', 'elementor_header_footer'),
(1096, 122, '_elementor_edit_mode', 'builder'),
(1097, 122, '_elementor_template_type', 'wp-page'),
(1098, 122, '_elementor_version', '3.35.3'),
(1099, 122, '_elementor_pro_version', '3.25.4'),
(1100, 122, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(971, 112, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(992, 114, '_elementor_edit_mode', 'builder'),
(993, 114, '_elementor_template_type', 'header'),
(994, 114, '_elementor_version', '3.35.3'),
(995, 114, '_elementor_pro_version', '3.25.4'),
(996, 114, '_wp_page_template', 'default'),
(997, 114, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"10\",\"bottom\":\"4\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(985, 113, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1006, 115, '_elementor_edit_mode', 'builder'),
(1007, 115, '_elementor_template_type', 'header'),
(1008, 115, '_elementor_version', '3.35.3'),
(1009, 115, '_elementor_pro_version', '3.25.4'),
(1010, 115, '_wp_page_template', 'default'),
(1011, 115, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-106\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"10\",\"bottom\":\"4\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(999, 114, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1020, 116, '_elementor_edit_mode', 'builder'),
(1021, 116, '_elementor_template_type', 'header'),
(1022, 116, '_elementor_version', '3.35.3'),
(1023, 116, '_elementor_pro_version', '3.25.4'),
(1024, 116, '_wp_page_template', 'default'),
(1025, 116, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1013, 115, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1034, 117, '_elementor_edit_mode', 'builder'),
(1035, 117, '_elementor_template_type', 'header'),
(1036, 117, '_elementor_version', '3.35.3'),
(1037, 117, '_elementor_pro_version', '3.25.4'),
(1038, 117, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1039, 117, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1027, 116, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1081, 121, '_elementor_edit_mode', 'builder'),
(1082, 121, '_elementor_template_type', 'header'),
(1083, 121, '_elementor_version', '3.35.3'),
(1084, 121, '_elementor_pro_version', '3.25.4'),
(1085, 121, '_wp_page_template', 'default'),
(1086, 121, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1041, 117, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1140, 126, '_elementor_edit_mode', 'builder'),
(1128, 125, '_elementor_edit_mode', 'builder'),
(1129, 125, '_elementor_template_type', 'header'),
(1130, 125, '_elementor_version', '3.35.3'),
(1131, 125, '_elementor_pro_version', '3.25.4'),
(1132, 125, '_wp_page_template', 'default'),
(1133, 125, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"color_menu_item_active\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1055, 118, '_elementor_page_settings', 'a:0:{}'),
(1058, 119, '_wp_page_template', 'elementor_header_footer'),
(1059, 119, '_elementor_edit_mode', 'builder'),
(1060, 119, '_elementor_template_type', 'wp-page'),
(1061, 119, '_elementor_version', '3.35.3'),
(1062, 119, '_elementor_pro_version', '3.25.4'),
(1063, 119, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1065, 119, '_elementor_page_settings', 'a:0:{}'),
(1068, 120, '_wp_page_template', 'elementor_header_footer'),
(1069, 120, '_elementor_edit_mode', 'builder'),
(1070, 120, '_elementor_template_type', 'wp-page'),
(1071, 120, '_elementor_version', '3.35.3'),
(1072, 120, '_elementor_pro_version', '3.25.4'),
(1073, 120, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1186, 130, '_wp_page_template', 'elementor_header_footer'),
(1166, 128, '_wp_page_template', 'elementor_header_footer'),
(1167, 128, '_elementor_edit_mode', 'builder'),
(1168, 128, '_elementor_template_type', 'wp-page'),
(1169, 128, '_elementor_version', '3.35.3'),
(1170, 128, '_elementor_pro_version', '3.25.4'),
(1171, 128, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1088, 121, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1141, 126, '_elementor_template_type', 'header'),
(1142, 126, '_elementor_version', '3.35.3'),
(1143, 126, '_elementor_pro_version', '3.25.4'),
(1144, 126, '_wp_page_template', 'default'),
(1145, 126, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1102, 122, '_elementor_page_settings', 'a:0:{}'),
(1105, 123, '_wp_page_template', 'elementor_header_footer'),
(1106, 123, '_elementor_edit_mode', 'builder'),
(1107, 123, '_elementor_template_type', 'wp-page'),
(1108, 123, '_elementor_version', '3.35.3'),
(1109, 123, '_elementor_pro_version', '3.25.4'),
(1110, 123, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1112, 123, '_elementor_page_settings', 'a:0:{}'),
(1116, 124, '_elementor_edit_mode', 'builder'),
(1117, 124, '_elementor_template_type', 'wp-page'),
(1118, 124, '_elementor_version', '3.35.3'),
(1119, 124, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1120, 124, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1219, 133, '_wp_page_template', 'elementor_header_footer'),
(1199, 131, '_wp_page_template', 'elementor_header_footer'),
(1200, 131, '_elementor_edit_mode', 'builder'),
(1201, 131, '_elementor_template_type', 'wp-page'),
(1202, 131, '_elementor_version', '3.35.3'),
(1203, 131, '_elementor_pro_version', '3.25.4'),
(1204, 131, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1135, 125, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1155, 127, '_elementor_pro_version', '3.25.4'),
(1156, 127, '_wp_page_template', 'default'),
(1157, 127, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2706, 301, '_elementor_edit_mode', 'builder'),
(2707, 301, '_elementor_template_type', 'header'),
(2708, 301, '_elementor_version', '3.35.3'),
(2709, 301, '_elementor_pro_version', '3.25.4'),
(2710, 301, '_wp_page_template', 'default'),
(2711, 301, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}]},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}]},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}]},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(1159, 127, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2722, 302, '_elementor_edit_mode', 'builder'),
(2723, 302, '_elementor_template_type', 'header'),
(2724, 302, '_elementor_version', '3.35.3'),
(2725, 302, '_elementor_pro_version', '3.25.4'),
(2726, 302, '_wp_page_template', 'default'),
(2727, 302, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}]},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(1173, 128, '_elementor_page_settings', 'a:0:{}'),
(1176, 129, '_wp_page_template', 'elementor_header_footer'),
(1177, 129, '_elementor_edit_mode', 'builder'),
(1178, 129, '_elementor_template_type', 'wp-page'),
(1179, 129, '_elementor_version', '3.35.3'),
(1180, 129, '_elementor_pro_version', '3.25.4'),
(1181, 129, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1183, 129, '_elementor_page_settings', 'a:0:{}'),
(1187, 130, '_elementor_edit_mode', 'builder'),
(1188, 130, '_elementor_template_type', 'wp-page'),
(1189, 130, '_elementor_version', '3.35.3'),
(1190, 130, '_elementor_pro_version', '3.25.4'),
(1191, 130, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1252, 136, '_wp_page_template', 'elementor_header_footer'),
(1232, 134, '_wp_page_template', 'elementor_header_footer'),
(1233, 134, '_elementor_edit_mode', 'builder'),
(1234, 134, '_elementor_template_type', 'wp-page'),
(1235, 134, '_elementor_version', '3.35.3'),
(1236, 134, '_elementor_pro_version', '3.25.4'),
(1237, 134, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1206, 131, '_elementor_page_settings', 'a:0:{}'),
(1209, 132, '_wp_page_template', 'elementor_header_footer'),
(1210, 132, '_elementor_edit_mode', 'builder'),
(1211, 132, '_elementor_template_type', 'wp-page'),
(1212, 132, '_elementor_version', '3.35.3'),
(1213, 132, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1214, 132, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1216, 132, '_elementor_page_settings', 'a:0:{}'),
(1220, 133, '_elementor_edit_mode', 'builder'),
(1221, 133, '_elementor_template_type', 'wp-page'),
(1222, 133, '_elementor_version', '3.35.3'),
(1223, 133, '_elementor_pro_version', '3.25.4'),
(1224, 133, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1285, 139, '_wp_page_template', 'elementor_header_footer'),
(1265, 137, '_wp_page_template', 'elementor_header_footer'),
(1266, 137, '_elementor_edit_mode', 'builder'),
(1267, 137, '_elementor_template_type', 'wp-page'),
(1268, 137, '_elementor_version', '3.35.3'),
(1269, 137, '_elementor_pro_version', '3.25.4'),
(1270, 137, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1239, 134, '_elementor_page_settings', 'a:0:{}'),
(1242, 135, '_wp_page_template', 'elementor_header_footer'),
(1243, 135, '_elementor_edit_mode', 'builder'),
(1244, 135, '_elementor_template_type', 'wp-page'),
(1245, 135, '_elementor_version', '3.35.3'),
(1246, 135, '_elementor_pro_version', '3.25.4'),
(1247, 135, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1249, 135, '_elementor_page_settings', 'a:0:{}'),
(1253, 136, '_elementor_edit_mode', 'builder'),
(1254, 136, '_elementor_template_type', 'wp-page'),
(1255, 136, '_elementor_version', '3.35.3'),
(1256, 136, '_elementor_pro_version', '3.25.4'),
(1257, 136, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1294, 10, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1341, 147, '_wp_page_template', 'elementor_header_footer'),
(1342, 147, '_elementor_edit_mode', 'builder'),
(1343, 147, '_elementor_template_type', 'wp-page'),
(1344, 147, '_elementor_version', '3.35.3'),
(1345, 147, '_elementor_pro_version', '3.25.4'),
(1346, 147, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1272, 137, '_elementor_page_settings', 'a:0:{}'),
(1275, 138, '_wp_page_template', 'elementor_header_footer'),
(1276, 138, '_elementor_edit_mode', 'builder'),
(1277, 138, '_elementor_template_type', 'wp-page'),
(1278, 138, '_elementor_version', '3.35.3'),
(1279, 138, '_elementor_pro_version', '3.25.4'),
(1280, 138, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1282, 138, '_elementor_page_settings', 'a:0:{}'),
(1286, 139, '_elementor_edit_mode', 'builder'),
(1287, 139, '_elementor_template_type', 'wp-page'),
(1288, 139, '_elementor_version', '3.35.3'),
(1289, 139, '_elementor_pro_version', '3.25.4'),
(1290, 139, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1368, 10, 'site-post-title', 'disabled'),
(1298, 140, '_wp_attached_file', '2026/02/about-2.jpg'),
(1299, 140, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2026/02/about-2.jpg\";s:8:\"filesize\";i:92496;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"about-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22517;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"about-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8049;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"about-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93300;}}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:{}}}'),
(1300, 140, '_elementor_source_image_hash', '257469649ca9a8f397d0dfc3f6434bd1ae5a7d4b'),
(1301, 141, '_wp_attached_file', '2026/02/first-responder_12252777.svg'),
(1302, 141, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3649;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1303, 141, '_elementor_source_image_hash', '60af377c3306f2e99f804cf5ce889cf999241221'),
(1304, 142, '_wp_attached_file', '2026/02/about-3.jpg'),
(1305, 142, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2026/02/about-3.jpg\";s:8:\"filesize\";i:93603;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"about-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"about-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6184;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"about-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69647;}}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:{}}}'),
(1306, 142, '_elementor_source_image_hash', '0cb7ba7f6881e8d50e4259c579f7682c7debfe77'),
(1307, 143, '_elementor_edit_mode', 'builder'),
(1308, 143, '_elementor_template_type', 'container'),
(1309, 143, '_elementor_version', '3.35.3'),
(1310, 143, '_elementor_pro_version', '3.25.4'),
(1311, 143, '_elementor_page_settings', 'a:4:{s:10:\"hide_title\";s:3:\"yes\";s:16:\"background_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:25:\"background_video_fallback\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}}'),
(1312, 144, '_elementor_edit_mode', 'builder'),
(1313, 144, '_elementor_template_type', 'container'),
(1314, 144, '_elementor_version', '3.35.3'),
(1315, 144, '_elementor_pro_version', '3.25.4'),
(1316, 144, '_elementor_page_settings', 'a:0:{}'),
(1317, 143, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1318, 143, '_elementor_data', '[{\"id\":\"29c95c63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\":\"\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F0F5FAB8\",\"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\":\"2a9a1e63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"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\":[],\"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\":\"563784ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50125199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"475c7f79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a6c1c92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"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\":[],\"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\":\"47b5cc17\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c3e0122\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c036d0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c4598f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"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\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5383, 459, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>'),
(1320, 145, '_elementor_edit_mode', 'builder'),
(1321, 145, '_elementor_template_type', 'container'),
(1322, 145, '_elementor_version', '3.35.3'),
(1323, 145, '_elementor_pro_version', '3.25.4'),
(1324, 145, '_elementor_page_settings', 'a:4:{s:10:\"hide_title\";s:3:\"yes\";s:16:\"background_image\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:25:\"background_video_fallback\";a:3:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}}'),
(1325, 145, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1326, 145, '_elementor_data', '[{\"id\":\"29c95c63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\":\"\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F0F5FAB8\",\"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\":\"2a9a1e63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"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\":[],\"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\":\"563784ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50125199\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"475c7f79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5a6c1c92\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"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\":[],\"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\":\"47b5cc17\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c3e0122\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c036d0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c4598f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\",\"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\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"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\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1328, 143, 'site-post-title', 'disabled'),
(1329, 143, '_elementor_controls_usage', 'a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;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:9:{s:5:\"align\";i:2;s:5:\"width\";i:2;s:5:\"space\";i:2;s:19:\"image_border_radius\";i:1;s:6:\"height\";i:2;s:10:\"object-fit\";i:1;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:27:\"image_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:2;}s:14:\"_section_style\";a:4:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:1;s:4:\"view\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:10:\"title_size\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:1;s:15:\"secondary_color\";i:1;s:9:\"icon_size\";i:1;}s:21:\"section_style_content\";a:1:{s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";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:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";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:8:\"flex_gap\";i:2;s:20:\"flex_justify_content\";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:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"section_layout\";a:2:{s:11:\"css_classes\";i:2;s:7:\"padding\";i:1;}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:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";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:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}s:18:\"section_text_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:10:\"text_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:\"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:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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: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:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(1348, 147, '_elementor_page_settings', 'a:0:{}'),
(1392, 152, '_wp_page_template', 'default'),
(1359, 149, '_wp_page_template', 'default'),
(1360, 149, '_elementor_edit_mode', 'builder'),
(1361, 149, '_elementor_template_type', 'wp-page'),
(1362, 149, '_elementor_version', '3.35.3'),
(1363, 149, '_elementor_pro_version', '3.25.4'),
(1364, 149, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1350, 148, '_wp_page_template', 'elementor_header_footer'),
(1351, 148, '_elementor_edit_mode', 'builder'),
(1352, 148, '_elementor_template_type', 'wp-page'),
(1353, 148, '_elementor_version', '3.35.3'),
(1354, 148, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1355, 148, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1357, 148, '_elementor_page_settings', 'a:0:{}'),
(1366, 149, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1372, 150, '_wp_page_template', 'default'),
(1373, 150, '_elementor_edit_mode', 'builder'),
(1374, 150, '_elementor_template_type', 'wp-page'),
(1375, 150, '_elementor_version', '3.35.3'),
(1376, 150, '_elementor_pro_version', '3.25.4'),
(1377, 150, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1437, 156, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:918;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(1405, 153, '_wp_page_template', 'default'),
(1406, 153, '_elementor_edit_mode', 'builder'),
(1407, 153, '_elementor_template_type', 'wp-page'),
(1408, 153, '_elementor_version', '3.35.3'),
(1409, 153, '_elementor_pro_version', '3.25.4'),
(1410, 153, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1379, 150, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1382, 151, '_wp_page_template', 'default'),
(1383, 151, '_elementor_edit_mode', 'builder'),
(1384, 151, '_elementor_template_type', 'wp-page'),
(1385, 151, '_elementor_version', '3.35.3'),
(1386, 151, '_elementor_pro_version', '3.25.4'),
(1387, 151, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1389, 151, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1393, 152, '_elementor_edit_mode', 'builder'),
(1394, 152, '_elementor_template_type', 'wp-page'),
(1395, 152, '_elementor_version', '3.35.3'),
(1396, 152, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1397, 152, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1399, 152, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1439, 157, '_wp_page_template', 'default'),
(1440, 157, '_elementor_edit_mode', 'builder'),
(1441, 157, '_elementor_template_type', 'wp-page'),
(1442, 157, '_elementor_version', '3.35.3'),
(1443, 157, '_elementor_pro_version', '3.25.4'),
(1444, 157, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1436, 156, '_wp_attached_file', '2026/02/target_18053469.svg'),
(1412, 153, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1415, 154, '_wp_page_template', 'default'),
(1416, 154, '_elementor_edit_mode', 'builder'),
(1417, 154, '_elementor_template_type', 'wp-page'),
(1418, 154, '_elementor_version', '3.35.3'),
(1419, 154, '_elementor_pro_version', '3.25.4'),
(1420, 154, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1422, 154, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1425, 155, '_wp_page_template', 'default'),
(1426, 155, '_elementor_edit_mode', 'builder'),
(1427, 155, '_elementor_template_type', 'wp-page'),
(1428, 155, '_elementor_version', '3.35.3'),
(1429, 155, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1430, 155, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1432, 155, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1446, 157, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1447, 158, '_wp_page_template', 'default'),
(1448, 158, '_elementor_edit_mode', 'builder'),
(1449, 158, '_elementor_template_type', 'wp-page'),
(1450, 158, '_elementor_version', '3.35.3'),
(1451, 158, '_elementor_pro_version', '3.25.4'),
(1452, 158, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT NXT GEN<span style=\\\" font-weight:100;color:#E8C061;\\\"> Medical<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our \",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1454, 158, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1530, 166, '_elementor_template_type', 'wp-page'),
(1531, 166, '_elementor_version', '3.35.3'),
(1532, 166, '_elementor_pro_version', '3.25.4'),
(1455, 159, '_wp_page_template', 'default'),
(1456, 159, '_elementor_edit_mode', 'builder'),
(1457, 159, '_elementor_template_type', 'wp-page'),
(1458, 159, '_elementor_version', '3.35.3'),
(1459, 159, '_elementor_pro_version', '3.25.4'),
(1460, 159, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1462, 159, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1466, 160, '_wp_page_template', 'default'),
(1467, 160, '_elementor_edit_mode', 'builder'),
(1468, 160, '_elementor_template_type', 'wp-page'),
(1469, 160, '_elementor_version', '3.35.3'),
(1470, 160, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1471, 160, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1541, 167, '_elementor_edit_mode', 'builder'),
(1542, 167, '_elementor_template_type', 'wp-page'),
(1510, 164, '_wp_page_template', 'default'),
(1511, 164, '_elementor_edit_mode', 'builder'),
(1512, 164, '_elementor_template_type', 'wp-page'),
(1513, 164, '_elementor_version', '3.35.3'),
(1514, 164, '_elementor_pro_version', '3.25.4'),
(1515, 164, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1540, 167, '_wp_page_template', 'default'),
(1575, 171, '_wp_page_template', 'default'),
(1576, 171, '_elementor_edit_mode', 'builder'),
(1577, 171, '_elementor_template_type', 'wp-page'),
(1578, 171, '_elementor_version', '3.35.3'),
(1579, 171, '_elementor_pro_version', '3.25.4'),
(1580, 171, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1765, 198, '_wp_page_template', 'default'),
(1766, 198, '_elementor_edit_mode', 'builder'),
(1767, 198, '_elementor_template_type', 'wp-page'),
(1768, 198, '_elementor_version', '3.35.3'),
(1769, 198, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1770, 198, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5cda6b7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2e8874c\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3869e79b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1838, 205, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5976;s:5:\"width\";i:682;s:6:\"height\";i:682;}'),
(1473, 160, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1476, 161, '_wp_page_template', 'default'),
(1477, 161, '_elementor_edit_mode', 'builder'),
(1478, 161, '_elementor_template_type', 'wp-page'),
(1479, 161, '_elementor_version', '3.35.3'),
(1480, 161, '_elementor_pro_version', '3.25.4'),
(1481, 161, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1483, 161, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1528, 166, '_wp_page_template', 'default'),
(1529, 166, '_elementor_edit_mode', 'builder'),
(1486, 162, '_wp_page_template', 'default'),
(1487, 162, '_elementor_edit_mode', 'builder'),
(1488, 162, '_elementor_template_type', 'wp-page'),
(1489, 162, '_elementor_version', '3.35.3'),
(1490, 162, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1491, 162, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1493, 162, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1543, 167, '_elementor_version', '3.35.3'),
(1544, 167, '_elementor_pro_version', '3.25.4'),
(1545, 167, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1535, 166, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1533, 166, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1517, 164, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1519, 165, '_wp_page_template', 'default'),
(1520, 165, '_elementor_edit_mode', 'builder'),
(1521, 165, '_elementor_template_type', 'wp-page'),
(1522, 165, '_elementor_version', '3.35.3'),
(1523, 165, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1524, 165, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\".about_style .about_box_style{\\n    position: relative;\\n}\\n.about_style .about_box_style::after{\\n    position: absolute;\\n    content: \\\"\\\";\\n    left: 90px;\\n    top: 90px;\\n    width: 60%;\\n    height: 70%;\\n    border: 7px solid #E8C061;\\n    background: #E8C061;\\n    z-index: -1;\\n    border-radius: 21px;\\n}\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c06b2c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":141,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/first-responder_12252777.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Nxt Gen Medical\",\"description_text\":\"\",\"title_size\":\"h5\",\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#e8c061\",\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"21\",\"bottom\":\"31\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"2f5c52a\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#E8C061\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_background_color\":\"\",\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1526, 165, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1547, 167, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1550, 168, '_wp_page_template', 'default'),
(1551, 168, '_elementor_edit_mode', 'builder'),
(1552, 168, '_elementor_template_type', 'wp-page'),
(1553, 168, '_elementor_version', '3.35.3'),
(1554, 168, '_elementor_pro_version', '3.25.4'),
(1555, 168, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1557, 168, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1560, 169, '_wp_page_template', 'default'),
(1561, 169, '_elementor_edit_mode', 'builder'),
(1562, 169, '_elementor_template_type', 'wp-page'),
(1563, 169, '_elementor_version', '3.35.3'),
(1564, 169, '_elementor_pro_version', '3.25.4'),
(1565, 169, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1567, 169, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1608, 174, '_wp_page_template', 'default'),
(1609, 174, '_elementor_edit_mode', 'builder'),
(1610, 174, '_elementor_template_type', 'wp-page'),
(1611, 174, '_elementor_version', '3.35.3'),
(1612, 174, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1613, 174, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1573, 170, '_wp_attached_file', '2026/02/ABOUT-3.jpeg'),
(1574, 170, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2026/02/ABOUT-3.jpeg\";s:8:\"filesize\";i:95642;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"ABOUT-3-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21501;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"ABOUT-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"ABOUT-3-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90762;}}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:{}}}'),
(1582, 171, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1585, 172, '_wp_page_template', 'default'),
(1586, 172, '_elementor_edit_mode', 'builder'),
(1587, 172, '_elementor_template_type', 'wp-page'),
(1588, 172, '_elementor_version', '3.35.3'),
(1589, 172, '_elementor_pro_version', '3.25.4'),
(1590, 172, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":142,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-3.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1592, 172, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1595, 173, '_wp_page_template', 'default'),
(1596, 173, '_elementor_edit_mode', 'builder'),
(1597, 173, '_elementor_template_type', 'wp-page'),
(1598, 173, '_elementor_version', '3.35.3'),
(1599, 173, '_elementor_pro_version', '3.25.4'),
(1600, 173, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1602, 173, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1643, 178, '_wp_page_template', 'default'),
(1644, 178, '_elementor_edit_mode', 'builder'),
(1645, 178, '_elementor_template_type', 'wp-page'),
(1646, 178, '_elementor_version', '3.35.3'),
(1647, 178, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1648, 178, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1615, 174, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1618, 175, '_wp_page_template', 'default'),
(1619, 175, '_elementor_edit_mode', 'builder'),
(1620, 175, '_elementor_template_type', 'wp-page'),
(1621, 175, '_elementor_version', '3.35.3'),
(1622, 175, '_elementor_pro_version', '3.25.4'),
(1623, 175, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1625, 175, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1628, 176, '_wp_page_template', 'default'),
(1629, 176, '_elementor_edit_mode', 'builder'),
(1630, 176, '_elementor_template_type', 'wp-page'),
(1631, 176, '_elementor_version', '3.35.3'),
(1632, 176, '_elementor_pro_version', '3.25.4'),
(1633, 176, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1635, 176, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1732, 195, '_wp_page_template', 'default'),
(1733, 195, '_elementor_edit_mode', 'builder'),
(1734, 195, '_elementor_template_type', 'wp-page'),
(1735, 195, '_elementor_version', '3.35.3'),
(1736, 195, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1737, 195, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1641, 177, '_wp_attached_file', '2026/02/about-4.jpeg'),
(1642, 177, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2026/02/about-4.jpeg\";s:8:\"filesize\";i:95480;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"about-4-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"about-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8143;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"about-4-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95589;}}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:{}}}'),
(1650, 178, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1653, 179, '_wp_page_template', 'default'),
(1654, 179, '_elementor_edit_mode', 'builder'),
(1655, 179, '_elementor_template_type', 'wp-page'),
(1656, 179, '_elementor_version', '3.35.3'),
(1657, 179, '_elementor_pro_version', '3.25.4'),
(1658, 179, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":140,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1660, 179, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1663, 180, '_wp_page_template', 'default'),
(1664, 180, '_elementor_edit_mode', 'builder'),
(1665, 180, '_elementor_template_type', 'wp-page'),
(1666, 180, '_elementor_version', '3.35.3'),
(1667, 180, '_elementor_pro_version', '3.25.4'),
(1668, 180, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1670, 180, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1676, 181, '_wp_attached_file', '2026/02/distributed_6600212.svg'),
(1677, 181, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1460;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1678, 181, '_elementor_source_image_hash', 'feb6e289fe3ff3d6654d3565709b519dd3ed9808'),
(1679, 182, '_wp_attached_file', '2026/02/placeholder.png'),
(1680, 182, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2026/02/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4694;}}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:{}}}'),
(1681, 182, '_elementor_source_image_hash', 'e73f8e9f6f6673d60c6a9b56574ba7e75250fdb6'),
(1682, 183, '_wp_attached_file', '2026/02/adhd_11374835.svg'),
(1683, 183, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2350;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(1684, 183, '_elementor_source_image_hash', '3a3028e59ba3c8ee5a21535b961a188d6a2b568b'),
(1685, 184, '_wp_attached_file', '2026/02/placeholder-1.png'),
(1686, 184, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/02/placeholder-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4694;}}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:{}}}'),
(1687, 184, '_elementor_source_image_hash', 'e73f8e9f6f6673d60c6a9b56574ba7e75250fdb6'),
(1688, 185, '_wp_attached_file', '2026/02/hypnosis_16854159.svg'),
(1689, 185, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3716;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1690, 185, '_elementor_source_image_hash', '87843b0711a23e0b7b60c7c2ebee1056ea9e78ac'),
(1691, 186, '_wp_attached_file', '2026/02/placeholder-2.png'),
(1692, 186, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/02/placeholder-2.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4694;}}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:{}}}'),
(1693, 186, '_elementor_source_image_hash', 'e73f8e9f6f6673d60c6a9b56574ba7e75250fdb6'),
(1694, 187, '_wp_attached_file', '2026/02/development_17928573.svg'),
(1695, 187, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2523;s:5:\"width\";i:2;s:6:\"height\";i:2;}'),
(1696, 187, '_elementor_source_image_hash', 'e62e945e45559d28e48f9b50eabe76ae399b940f'),
(1697, 188, '_wp_attached_file', '2026/02/placeholder-3.png');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1698, 188, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/02/placeholder-3.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4694;}}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:{}}}'),
(1699, 188, '_elementor_source_image_hash', 'e73f8e9f6f6673d60c6a9b56574ba7e75250fdb6'),
(1700, 189, '_wp_attached_file', '2026/02/question_7002121.svg'),
(1701, 189, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4718;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1702, 189, '_elementor_source_image_hash', '3037638b22f3366598c06fce3d8876ae9bc28c4c'),
(1703, 190, '_wp_attached_file', '2026/02/placeholder-4.png'),
(1704, 190, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/02/placeholder-4.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-4-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-4-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-4-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4694;}}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:{}}}'),
(1705, 190, '_elementor_source_image_hash', 'e73f8e9f6f6673d60c6a9b56574ba7e75250fdb6'),
(1706, 191, '_wp_attached_file', '2026/02/brainstorming_18789094.svg'),
(1707, 191, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4491;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(1708, 191, '_elementor_source_image_hash', 'ce512ffda671681f714868fd756e12e28afdd0e1'),
(1709, 192, '_wp_attached_file', '2026/02/placeholder-5.png'),
(1710, 192, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/02/placeholder-5.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-5-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-5-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4694;}}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:{}}}'),
(1711, 192, '_elementor_source_image_hash', 'e73f8e9f6f6673d60c6a9b56574ba7e75250fdb6'),
(1712, 193, '_elementor_edit_mode', 'builder'),
(1713, 193, '_elementor_template_type', 'page'),
(1714, 193, '_elementor_version', '3.35.3'),
(1715, 193, '_elementor_pro_version', '3.25.4'),
(1716, 193, '_elementor_page_settings', 'a:0:{}'),
(1717, 193, '_elementor_data', '[{\"id\":\"6f1f0de6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"background_color\":\"#f1efed\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\":\"\"}],\"__globals__\":{\"background_color\":\"\"},\"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\":\"5654da64\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"animation_duration\":\"slow\",\"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\":\"52db7b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2e8874c\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16504c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4add5505\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"animation_duration\":\"slow\",\"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\":\"7638ece5\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"After Diagnosis: What Now?\",\"subtitle\":\"\",\"description\":\"<p>A diagnosis is the first step. Here\\u2019s how to take control and build practical routines.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":189,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/after-diagnosis-what-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"43f1c19\",\"icon_type\":\"icon\",\"image\":{\"id\":190,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-4.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Neurodiversity Explained\",\"subtitle\":\"\",\"description\":\"<p>ADHD is part of the neurodiversity spectrum \\u2014 a natural variation in how brains process information.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":191,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/neurodiversity-explained\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9c8f5ce\",\"icon_type\":\"icon\",\"image\":{\"id\":192,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-5.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"info_box_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_slideshow_gallery\":[],\"select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5375, 293, '_elementor_element_cache', '{\"timeout\":1773546266,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-ecf924f e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"ecf924f\\\" 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-fdec318 e-con-full e-flex e-con e-child\\\" data-id=\\\"fdec318\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1128642 elementor-widget elementor-widget-image\\\" data-id=\\\"1128642\\\" 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=\\\"331\\\" height=\\\"363\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\\\" class=\\\"attachment-full size-full wp-image-78\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png 331w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7-274x300.png 274w\\\" sizes=\\\"(max-width: 331px) 100vw, 331px\\\" \\/>\\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-1c4c1f0 e-con-full e-flex e-con e-child\\\" data-id=\\\"1c4c1f0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d959b27 elementor-widget elementor-widget-heading\\\" data-id=\\\"d959b27\\\" 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\\\">Quick Link<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-686b0aa elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"686b0aa\\\" 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\\/avalumcare\\/\\\">\\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<\\/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\\/avalumcare\\/about-us\\/\\\">\\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\\\">About Us<\\/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\\/avalumcare\\/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\\\">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\\/avalumcare\\/resources\\/\\\">\\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\\\">Resources<\\/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\\/avalumcare\\/contact\\/\\\">\\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\\\">Contact Us<\\/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-634469a e-con-full e-flex e-con e-child\\\" data-id=\\\"634469a\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f34a8a6 elementor-widget elementor-widget-google_maps\\\" data-id=\\\"f34a8a6\\\" 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=USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"USA\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"USA\\\"\\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\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-85fb01f e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"85fb01f\\\" 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-a86b5ac elementor-widget elementor-widget-heading\\\" data-id=\\\"a86b5ac\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<p class=\\\"elementor-heading-title elementor-size-default\\\">\\u00a9 2026 All Rights Reserved<\\/p>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(5376, 10, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:11:{i:0;s:14:\"widget-heading\";i:1;s:20:\"e-animation-fadeInUp\";i:2;s:8:\"e-swiper\";i:3;s:12:\"widget-image\";i:4;s:14:\"widget-counter\";i:5;s:22:\"e-animation-fadeInLeft\";i:6;s:14:\"widget-divider\";i:7;s:15:\"widget-icon-box\";i:8;s:23:\"e-animation-fadeInRight\";i:9;s:18:\"e-animation-zoomIn\";i:10;s:11:\"widget-form\";}s:7:\"scripts\";a:4:{i:0;s:18:\"elementor-frontend\";i:1;s:6:\"swiper\";i:2;s:16:\"jquery-numerator\";i:3;s:18:\"powerpack-frontend\";}}'),
(5377, 10, '_elementor_css', 'a:6:{s:4:\"time\";i:1773459866;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:3:\"svg\";i:11;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(5379, 274, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>'),
(5380, 275, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5381, 10, '_elementor_element_cache', '{\"timeout\":1773546266,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-e3a6030 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"e3a6030\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:43,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/avalumcare\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/02\\\\\\/banner-17.jpeg&quot;},{&quot;id&quot;:63,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/avalumcare\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/02\\\\\\/banner-18.jpeg&quot;}],&quot;background_slideshow_ken_burns&quot;:&quot;yes&quot;,&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500,&quot;background_slideshow_ken_burns_zoom_direction&quot;:&quot;in&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-d6c3182 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"d6c3182\\\" 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-67bc908 elementor-widget elementor-widget-heading\\\" data-id=\\\"67bc908\\\" 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\\\">Avalum <span style=\\\"font-weight:300\\\">Care<\\/span><\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6IjIxY2E5M2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJIZWxwaW5nIG9sZGVyIGFkdWx0cyBsaXZlIHRoZSBsaWZlIHRoZXkgbG92ZSBpbiB0aGUgcGxhY2UgdGhleSBjYWxsIGhvbWUiLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNmVmYzg4MyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwidHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjMsInNpemVzIjpbXX0sIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTE2IiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6NTEsInNpemVzIjpbXX0sIl9mbGV4X2FsaWduX3NlbGYiOiJjZW50ZXIiLCJfX2dsb2JhbHNfXyI6eyJ0ZXh0X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCJ9LCJ0eXBvZ3JhcGh5X2ZvbnRfc2l6ZV9tb2JpbGVfZXh0cmEiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTksInNpemVzIjpbXX0sIl9lbGVtZW50X2N1c3RvbV93aWR0aF9tb2JpbGVfZXh0cmEiOnsidW5pdCI6IiUiLCJzaXplIjoxMDAsInNpemVzIjpbXX0sIl9lbGVtZW50X2N1c3RvbV93aWR0aF9tb2JpbGUiOnsidW5pdCI6IiUiLCJzaXplIjoiIiwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-b8d4a76 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"b8d4a76\\\" 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\\/avalumcare\\/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\\\">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-8f09733 about_style e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"8f09733\\\" 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-283e3c07 e-con-full about_box_style animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"283e3c07\\\" 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-3bbaaf1d elementor-widget elementor-widget-image\\\" data-id=\\\"3bbaaf1d\\\" 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=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\\\" class=\\\"attachment-full size-full wp-image-177\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg 1000w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4-300x300.jpeg 300w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4-150x150.jpeg 150w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4-768x768.jpeg 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-7e74627 elementor-widget__width-initial elementor-widget elementor-widget-counter\\\" data-id=\\\"7e74627\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Hour Care<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"24\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\"><\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-19f83a72 elementor-absolute elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-image\\\" data-id=\\\"19f83a72\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_position&quot;:&quot;absolute&quot;}\\\" 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=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\\\" class=\\\"attachment-full size-full wp-image-170\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg 1000w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3-300x300.jpeg 300w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3-150x150.jpeg 150w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3-768x768.jpeg 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-645f5c6 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"645f5c6\\\" 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-7974e324 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-left elementor-widget elementor-widget-divider\\\" data-id=\\\"7974e324\\\" 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\\t<span class=\\\"elementor-divider__text elementor-divider__element\\\">\\n\\t\\t\\t\\tAbout Us\\t\\t\\t\\t<\\/span>\\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-3679951d elementor-widget elementor-widget-heading\\\" data-id=\\\"3679951d\\\" 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\\\">Compassionate Care You <span style=\\\"font-weight:100\\\">Can Trust<\\/span><\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6ImQ0YTEzYzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJJdCBkb2Vzblx1MjAxOXQgbWF0dGVyIGlmIHlvdVx1MjAxOXJlIGhlcmUgYmVjYXVzZSB5b3VcdTIwMTlyZSBsb29raW5nIGZvciBoZWxwIGxpdmluZyBpbmRlcGVuZGVudGx5LCBvciBpZiB5b3Ugd2FudCB0byBtYWtlIHN1cmUgc29tZW9uZSB5b3UgbG92ZSBoYXMgdGhlIHN1cHBvcnQgdGhleSBuZWVkIHRvIHN0YXkgaW4gdGhlaXIgaG9tZS4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjlmYzRlZTgiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjYtMDItMTMgMTM6MjgifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-9c4db83 elementor-view-stacked elementor-shape-square elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"9c4db83\\\" 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\\\" id=\\\"glyph\\\" viewBox=\\\"0 0 64 64\\\"><path d=\\\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\\\"><\\/path><path d=\\\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\\\"><\\/path><path d=\\\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\\\"><\\/path><path d=\\\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\\\"><\\/path><\\/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\\tOur Mission\\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\\tPut simply, our mission is to improve the quality of life for those we serve.\\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-7274faad elementor-widget elementor-widget-button\\\" data-id=\\\"7274faad\\\" 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\\/nxtgenmedical\\/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-2637f202 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"2637f202\\\" 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-2b142ad4 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"2b142ad4\\\" 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-e1d3c8d elementor-widget elementor-widget-heading\\\" data-id=\\\"e1d3c8d\\\" 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 we  <span style=\\\"font-weight:100\\\"> provide<\\/span><\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-4f5d980 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4f5d980\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6IjIxMzkwZTMyIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsicHBfaW5mb19ib3hlcyI6W3sidGl0bGUiOiJQZXJzb25hbCBjYXJlIiwiX2lkIjoiOWI4ZWIzNSIsInN1YnRpdGxlIjoiIiwiZGVzY3JpcHRpb24iOiI8cD5QZW9wbGUgb2Z0ZW4gdGFrZSBmb3IgZ3JhbnRlZCB0aGUgdGhpbmdzIHRoZXkgZG8gZXZlcnkgZGF5LCBsaWtlIGNsaW1iaW5nIHN0YWlycywgdGFraW5nIGNhcmUgb2YgcGVyc29uYWwgaHlnaWVuZSBhbmQgZXZlbiBqdXN0IGdldHRpbmcgb3V0IG9mIGJlZDxcL3A+Iiwic2VsZWN0ZWRfaWNvbiI6eyJ2YWx1ZSI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9hdmFsdW1jYXJlXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wMlwvcGVkaWF0cmljXzE1MTkyNzcwLnN2ZyIsImlkIjoyMDZ9LCJsaWJyYXJ5Ijoic3ZnIn0sImljb25fdGV4dCI6IjEiLCJidXR0b25fdGV4dCI6IkxlYXJuIE1vcmUiLCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL2F2YWx1bWNhcmVcL3BlcnNvbmFsLWNhcmVcLyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJpbWFnZSI6eyJpZCI6MTgyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9hdmFsdW1jYXJlXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wMlwvcGxhY2Vob2xkZXIucG5nIn19LHsidGl0bGUiOiJNZWRpY2F0aW9uIHJlbWluZGVycyIsInN1YnRpdGxlIjoiIiwiZGVzY3JpcHRpb24iOiJUYWtpbmcgdGhlIHJpZ2h0IG1lZGljYXRpb24gYXQgdGhlIGNvcnJlY3QgdGltZSBpcyBlc3NlbnRpYWwgZm9yIG1haW50YWluaW5nIGhlYWx0aCwgbWFuYWdpbmcgY2hyb25pYyBjb25kaXRpb25zLCBhbmQgIiwic2VsZWN0ZWRfaWNvbiI6eyJ2YWx1ZSI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9hdmFsdW1jYXJlXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wMlwvc21hcnRwaG9uZV80NDQ2NDA3LnN2ZyIsImlkIjo0NTl9LCJsaWJyYXJ5Ijoic3ZnIn0sImljb25fdGV4dCI6IjEiLCJidXR0b25fdGV4dCI6IkxlYXJuIE1vcmUiLCJfaWQiOiIxNzAxZWRlIiwibGlua190eXBlIjoiYnV0dG9uIiwibGluayI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9hdmFsdW1jYXJlXC9tZWRpY2F0aW9uLXJlbWluZGVyc1wvIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn0sImltYWdlIjp7ImlkIjoxODQsInVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL2F2YWx1bWNhcmVcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAyXC9wbGFjZWhvbGRlci0xLnBuZyJ9fSx7InRpdGxlIjoiVHJhbnNwb3J0YXRpb24iLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+V2UgdW5kZXJzdGFuZCB0aGF0IGdldHRpbmcgdG8gYXBwb2ludG1lbnRzLCBydW5uaW5nIGVycmFuZHMsIG9yIHZpc2l0aW5nIGxvdmVkIG9uZXMgaXMgYW4gaW1wb3J0YW50IHBhcnQgb2YgbWFpbnRhaW5pbmcgaW5kZXBlbmRlbmNlIGFuZCB3ZWxsLWJlaW5nLjxcL3A+Iiwic2VsZWN0ZWRfaWNvbiI6eyJ2YWx1ZSI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9hdmFsdW1jYXJlXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wMlwvdHJhbnNwb3J0YXRpb25fMTg2OTkwMTkuc3ZnIiwiaWQiOjIxN30sImxpYnJhcnkiOiJzdmcifSwiaWNvbl90ZXh0IjoiMSIsImJ1dHRvbl90ZXh0IjoiTGVhcm4gTW9yZSIsIl9pZCI6IjFmMTY3NmQiLCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL2F2YWx1bWNhcmVcL3RyYW5zcG9ydGF0aW9uXC8iLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiaW1hZ2UiOnsiaWQiOjE4NiwidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvYXZhbHVtY2FyZVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDJcL3BsYWNlaG9sZGVyLTIucG5nIn19LHsidGl0bGUiOiJEZW1lbnRpYSBjYXJlIiwic3VidGl0bGUiOiIiLCJkZXNjcmlwdGlvbiI6IjxwPkhvbWUgSW5zdGVhZCwgSW5jLiBHZXJvbnRvbG9naXN0IGFuZCBDYXJlIFBybyBBZHZvY2F0ZSwgTGFrZWx5biBIb2dhbiBFaWNoZW5iZXJnZXIsIHRvZ2V0aGVyIHdpdGggb3RoZXIgZG9jdG9ycyBhbmQgZXhwZXJ0cyBpbiBhZ2luZywgaGF2ZSBjcmVhdGVkPFwvcD4iLCJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL2F2YWx1bWNhcmVcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAyXC9icmFpbnN0b3JtaW5nXzE4Nzg5MDk0LnN2ZyIsImlkIjoxOTF9LCJsaWJyYXJ5Ijoic3ZnIn0sImljb25fdGV4dCI6IjEiLCJidXR0b25fdGV4dCI6IkxlYXJuIE1vcmUiLCJfaWQiOiJhZDQwYTRhIiwibGlua190eXBlIjoiYnV0dG9uIiwibGluayI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9hdmFsdW1jYXJlXC9kZW1lbnRpYS1jYXJlXC8iLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiaW1hZ2UiOnsiaWQiOjE4OCwidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvYXZhbHVtY2FyZVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDJcL3BsYWNlaG9sZGVyLTMucG5nIn19XSwibGF5b3V0IjoiZ3JpZCIsImNvbHVtbnNfdGFibGV0X2V4dHJhIjoiMiIsImNvbHVtbnNfbW9iaWxlX2V4dHJhIjoiMSIsInRpdGxlX2h0bWxfdGFnIjoiaDUiLCJlcXVhbF9oZWlnaHRfYm94ZXMiOiJ5ZXMiLCJpbmZvX2JveF9iYWNrZ3JvdW5kX2JhY2tncm91bmQiOiJjbGFzc2ljIiwiaW5mb19ib3hfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIyMCIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIzMCIsImxlZnQiOiIyMCIsImlzTGlua2VkIjpmYWxzZX0sImljb25fc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjo2MCwic2l6ZXMiOltdfSwiaWNvbl9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjEyMCIsInJpZ2h0IjoiMTIwIiwiYm90dG9tIjoiMTIwIiwibGVmdCI6IjEyMCIsImlzTGlua2VkIjp0cnVlfSwiaWNvbl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInNpemUiOjgsInNpemVzIjpbXX0sImljb25fbWFyZ2luIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIxMSIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwidGl0bGVfbWFyZ2luIjp7InVuaXQiOiJweCIsInNpemUiOjcsInNpemVzIjpbXX0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiYTQzYjNjMyIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNi0wMi0xMyAxMzozOSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiaW5mb19ib3hfYmFja2dyb3VuZF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJpY29uX2NvbG9yX25vcm1hbCI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJpY29uX2JnX2NvbG9yX25vcm1hbCI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJidXR0b25fdGV4dF9jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiYnV0dG9uX2JnX2NvbG9yX25vcm1hbCI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJidXR0b25fdGV4dF9jb2xvcl9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJidXR0b25fYmdfY29sb3JfaG92ZXIiOiIifSwiZGVzY3JpcHRpb25fbWFyZ2luIjp7InVuaXQiOiJweCIsInNpemUiOjIwLCJzaXplcyI6W119LCJjb2x1bW5zIjoiNCIsImljb25faW1nX3dpZHRoIjp7InVuaXQiOiJweCIsInNpemUiOiIiLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNjAwIiwidGl0bGUiOiJDb21wYW5pb24gQ2FyZSIsImRlc2NyaXB0aW9uIjoiUGVvcGxlIG9mdGVuIHRha2UgZm9yIGdyYW50ZWQgdGhlIHRoaW5ncyB0aGV5IGRvIGV2ZXJ5IGRheSwgbGlrZSBjbGltYmluZyBzdGFpcnMsIHRha2luZyBjYXJlIG9mIHBlcnNvbmFsIGh5Z2llbmUgYW5kIGV2ZW4ganVzdCBnZXR0aW5nIG91dCBvZiBiZWQuIiwiaW5mb19ib3hfYmFja2dyb3VuZF9jb2xvciI6IiNGRkZGRkYiLCJpbmZvX2JveF9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJpY29uX2NvbG9yX25vcm1hbCI6IiNGRkZGRkYiLCJpY29uX2JnX2NvbG9yX25vcm1hbCI6IiMzZTdiMDQiLCJ0aXRsZV90eXBvZ3JhcGh5X3RleHRfdHJhbnNmb3JtIjoiY2FwaXRhbGl6ZSIsImJ1dHRvbl90ZXh0X2NvbG9yX25vcm1hbCI6IiM1NzU5NTkiLCJidXR0b25fYmdfY29sb3Jfbm9ybWFsIjoiI0ZGRkZGRiIsImJ1dHRvbl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJidXR0b25fdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sImJ1dHRvbl90eXBvZ3JhcGh5X3RleHRfZGVjb3JhdGlvbiI6InVuZGVybGluZSIsImJ1dHRvbl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6dHJ1ZX0sImJ1dHRvbl90ZXh0X2NvbG9yX2hvdmVyIjoiI0ZGRkZGRiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1pbmZvLWJveC1jYXJvdXNlbCJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8922dae elementor-align-center animated-slow elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"8922dae\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" 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\\/avalumcare\\/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\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-965cb11 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"965cb11\\\" 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-931c959 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"931c959\\\" 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-f83b8ba elementor-widget elementor-widget-heading\\\" data-id=\\\"f83b8ba\\\" 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\\\">Resources<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6ImZjMTM2NzYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5Ob2JvZHkga25vd3MgZXhhY3RseSB3aGF0IHRvIGV4cGVjdCBmcm9tIHRoZWlyIGFnaW5nIGpvdXJuZXkuIEl0XHUyMDE5cyBlYXN5IHRvIGZlZWwgb3ZlcndoZWxtZWQgd2hlbiB5b3UgZG9uXHUyMDE5dCBrbm93IHdoYXQgdG9tb3Jyb3cgd2lsbCBicmluZy4gVGhlIGdvb2QgbmV3cyBpcywgeW91IGRvblx1MjAxOXQgaGF2ZSB0byBnbyB0aHJvdWdoIGl0IGFsb25lLjxcL3A+PHA+QXZhbHVtIENhcmUgZXhpc3RzIHRvIGJlIHlvdXIgZ3VpZGUgdG8gc3VjY2Vzc2Z1bCBsaXZpbmcgYXQgaG9tZS4gV2hldGhlciB5b3VcdTIwMTlyZSBsb29raW5nIGZvciB0aXBzIG9uIGFnaW5nIGluIHBsYWNlLCBhIGd1aWRlIHRvIHRyYW5zaXRpb25hbCBjYXJlIGFmdGVyIGEgaG9zcGl0YWwgc3RheSw8XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNjAzMzFjYSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-80fd5b2 elementor-widget elementor-widget-button\\\" data-id=\\\"80fd5b2\\\" 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=\\\"#\\\">\\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<div class=\\\"elementor-element elementor-element-8be2474 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8be2474\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-694361c e-con-full elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con e-child\\\" data-id=\\\"694361c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-413df43 elementor-widget elementor-widget-image\\\" data-id=\\\"413df43\\\" 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=\\\"680\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\\\" class=\\\"attachment-full size-full wp-image-264\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg 680w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2-204x300.jpeg 204w\\\" sizes=\\\"(max-width: 680px) 100vw, 680px\\\" \\/>\\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-f0e221d e-con-full e-flex e-con e-child\\\" data-id=\\\"f0e221d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4fbcab5 elementor-widget elementor-widget-image\\\" data-id=\\\"4fbcab5\\\" 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=\\\"667\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\\\" class=\\\"attachment-full size-full wp-image-263\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg 667w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1-200x300.jpg 200w\\\" sizes=\\\"(max-width: 667px) 100vw, 667px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-522b0926 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"522b0926\\\" 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-4689b499 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4689b499\\\" 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-25b10d1d elementor-widget elementor-widget-heading\\\" data-id=\\\"25b10d1d\\\" 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\\\">Contact Us<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a19904b elementor-widget elementor-widget-heading\\\" data-id=\\\"a19904b\\\" 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\\\">Have a question but can\'t find an answer? <\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6IjNlODExNTcwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiZWRpdG9yIjoiQXJlIHlvdSByZWFkeSB0byBsZWFybiBtb3JlIGFib3V0IG91ciBjYXJlIHNlcnZpY2VzIG9yIGNhcmVlciBvcHBvcnR1bml0aWVzPyBTZW5kIHVzIGEgbWVzc2FnZSEgIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI2MmRjZTJhIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI2LTAyLTEzIDE1OjA1In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJ0ZXh0X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-7703b34c elementor-view-stacked elementor-position-inline-start elementor-mobile-position-inline-start elementor-shape-circle elementor-widget elementor-widget-icon-box\\\" data-id=\\\"7703b34c\\\" 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<a href=\\\"tel:3106945001\\\" class=\\\"elementor-icon\\\" tabindex=\\\"-1\\\" aria-label=\\\"Phone\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/a>\\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<h4 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<a href=\\\"tel:3106945001\\\" >\\n\\t\\t\\t\\t\\t\\t\\tPhone\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t<\\/h4>\\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\\t(310) 694-5001\\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-5f6d554 elementor-view-stacked elementor-position-inline-start elementor-mobile-position-inline-start elementor-shape-circle elementor-widget elementor-widget-icon-box\\\" data-id=\\\"5f6d554\\\" 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<a href=\\\"mailto:info@avalumcare.com\\\" class=\\\"elementor-icon\\\" tabindex=\\\"-1\\\" aria-label=\\\"Email\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/a>\\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<h4 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:info@avalumcare.com\\\" >\\n\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t<\\/h4>\\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\\tinfo@avalumcare.com\\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-493b732b e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"493b732b\\\" 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-5520e782 elementor-button-align-stretch elementor-widget elementor-widget-form\\\" data-id=\\\"5520e782\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\\\" data-widget_type=\\\"form.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<form class=\\\"elementor-form\\\" method=\\\"post\\\" name=\\\"Home\\\">\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"post_id\\\" value=\\\"10\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"form_id\\\" value=\\\"5520e782\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"referer_title\\\" value=\\\"\\\" \\/>\\n\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"queried_id\\\" value=\\\"10\\\"\\/>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"elementor-form-fields-wrapper elementor-labels-above\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-name\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tName\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[name]\\\" id=\\\"form-field-name\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-email\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"email\\\" name=\\\"form_fields[email]\\\" id=\\\"form-field-email\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\" required=\\\"required\\\" aria-required=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-field_4792f87 elementor-col-100 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_4792f87\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tPhone\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"tel\\\" name=\\\"form_fields[field_4792f87]\\\" id=\\\"form-field-field_4792f87\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\" required=\\\"required\\\" aria-required=\\\"true\\\" pattern=\\\"[0-9()#&amp;+*-=.]+\\\" title=\\\"Only numbers and phone characters (#, -, *, etc) are accepted.\\\">\\n\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-message\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tMessage\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-md\\\" name=\\\"form_fields[message]\\\" id=\\\"form-field-message\\\" rows=\\\"4\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\\\">\\n\\t\\t\\t\\t\\t<button class=\\\"elementor-button elementor-size-md\\\" type=\\\"submit\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Submit<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/button>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/form>\\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\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(5374, 293, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:12:\"widget-image\";i:1;s:14:\"widget-heading\";i:2;s:16:\"widget-icon-list\";i:3;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(1724, 194, '_elementor_edit_mode', 'builder'),
(1725, 194, '_elementor_template_type', 'page'),
(1726, 194, '_elementor_version', '3.35.3'),
(1727, 194, '_elementor_pro_version', '3.25.4'),
(1728, 194, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1729, 194, '_elementor_data', '[{\"id\":\"6f1f0de6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"gradient\",\"background_color\":\"#f1efed\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\":\"\"}],\"__globals__\":{\"background_color\":\"\"},\"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\":\"5654da64\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"animation_duration\":\"slow\",\"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\":\"52db7b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2e8874c\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16504c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4add5505\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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\",\"animation_duration\":\"slow\",\"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\":\"7638ece5\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_type\":\"icon\",\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"After Diagnosis: What Now?\",\"subtitle\":\"\",\"description\":\"<p>A diagnosis is the first step. Here\\u2019s how to take control and build practical routines.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":189,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/after-diagnosis-what-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"43f1c19\",\"icon_type\":\"icon\",\"image\":{\"id\":190,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-4.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Neurodiversity Explained\",\"subtitle\":\"\",\"description\":\"<p>ADHD is part of the neurodiversity spectrum \\u2014 a natural variation in how brains process information.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":191,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/neurodiversity-explained\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9c8f5ce\",\"icon_type\":\"icon\",\"image\":{\"id\":192,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-5.png\"},\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-07 to 2026-02-13\",\"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__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"info_box_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_slideshow_gallery\":[],\"select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1731, 193, '_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:11:\"text-editor\";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_editor\";a:1:{s:6:\"editor\";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;}}}}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:3:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";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:5:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";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:20:\"columns_tablet_extra\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;}}s:5:\"style\";a:4:{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:27:\"section_info_box_icon_style\";a:4:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;s:11:\"icon_margin\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(1739, 195, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1742, 196, '_wp_page_template', 'default'),
(1743, 196, '_elementor_edit_mode', 'builder'),
(1744, 196, '_elementor_template_type', 'wp-page'),
(1745, 196, '_elementor_version', '3.35.3'),
(1746, 196, '_elementor_pro_version', '3.25.4'),
(1747, 196, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1749, 196, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1829, 204, '_elementor_template_type', 'wp-page'),
(1830, 204, '_elementor_version', '3.35.3'),
(1831, 204, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1832, 204, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1752, 197, '_wp_page_template', 'default'),
(1753, 197, '_elementor_edit_mode', 'builder'),
(1754, 197, '_elementor_template_type', 'wp-page'),
(1755, 197, '_elementor_version', '3.35.3'),
(1756, 197, '_elementor_pro_version', '3.25.4'),
(1757, 197, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5cda6b7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2e8874c\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3869e79b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1759, 197, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1809, 202, '_wp_page_template', 'default'),
(1810, 202, '_elementor_edit_mode', 'builder'),
(1811, 202, '_elementor_template_type', 'wp-page'),
(1812, 202, '_elementor_version', '3.35.3'),
(1813, 202, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1814, 202, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3869e79b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1840, 206, '_wp_attached_file', '2026/02/pediatric_15192770.svg'),
(1841, 206, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3961;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1772, 198, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1775, 199, '_wp_page_template', 'default'),
(1776, 199, '_elementor_edit_mode', 'builder'),
(1777, 199, '_elementor_template_type', 'wp-page'),
(1778, 199, '_elementor_version', '3.35.3'),
(1779, 199, '_elementor_pro_version', '3.25.4'),
(1780, 199, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5cda6b7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Education\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2e8874c\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3869e79b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1782, 199, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1827, 204, '_wp_page_template', 'default'),
(1828, 204, '_elementor_edit_mode', 'builder'),
(1785, 200, '_wp_page_template', 'default'),
(1786, 200, '_elementor_edit_mode', 'builder'),
(1787, 200, '_elementor_template_type', 'wp-page'),
(1788, 200, '_elementor_version', '3.35.3'),
(1789, 200, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1790, 200, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3869e79b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1792, 200, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1843, 207, '_wp_page_template', 'default'),
(1844, 207, '_elementor_edit_mode', 'builder'),
(1845, 207, '_elementor_template_type', 'wp-page'),
(1846, 207, '_elementor_version', '3.35.3'),
(1847, 207, '_elementor_pro_version', '3.25.4'),
(1848, 207, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1837, 205, '_wp_attached_file', '2026/02/hygiene-products_3553891.svg'),
(1834, 204, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1816, 202, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1818, 203, '_wp_page_template', 'default'),
(1819, 203, '_elementor_edit_mode', 'builder'),
(1820, 203, '_elementor_template_type', 'wp-page'),
(1821, 203, '_elementor_version', '3.35.3'),
(1822, 203, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1823, 203, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3869e79b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cb5acfd\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Education Hub\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Understanding ADHD\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1825, 203, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1850, 207, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1851, 208, '_wp_page_template', 'default'),
(1852, 208, '_elementor_edit_mode', 'builder'),
(1853, 208, '_elementor_template_type', 'wp-page'),
(1854, 208, '_elementor_version', '3.35.3'),
(1855, 208, '_elementor_pro_version', '3.25.4'),
(1856, 208, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":181,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/distributed_6600212.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1858, 208, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1859, 209, '_wp_page_template', 'default'),
(1860, 209, '_elementor_edit_mode', 'builder'),
(1861, 209, '_elementor_template_type', 'wp-page'),
(1862, 209, '_elementor_version', '3.35.3'),
(1863, 209, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1864, 209, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1866, 209, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1870, 210, '_wp_page_template', 'default'),
(1871, 210, '_elementor_edit_mode', 'builder'),
(1872, 210, '_elementor_template_type', 'wp-page'),
(1873, 210, '_elementor_version', '3.35.3'),
(1874, 210, '_elementor_pro_version', '3.25.4'),
(1875, 210, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1901, 213, '_wp_page_template', 'default'),
(1902, 213, '_elementor_edit_mode', 'builder'),
(1903, 213, '_elementor_template_type', 'wp-page'),
(1904, 213, '_elementor_version', '3.35.3'),
(1905, 213, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1906, 213, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1877, 210, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1880, 211, '_wp_page_template', 'default'),
(1881, 211, '_elementor_edit_mode', 'builder'),
(1882, 211, '_elementor_template_type', 'wp-page'),
(1883, 211, '_elementor_version', '3.35.3'),
(1884, 211, '_elementor_pro_version', '3.25.4'),
(1885, 211, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"ADHD in Adult Life\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"ADHD Support Options\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":187,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/development_17928573.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1887, 211, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1890, 212, '_wp_page_template', 'default'),
(1891, 212, '_elementor_edit_mode', 'builder'),
(1892, 212, '_elementor_template_type', 'wp-page'),
(1893, 212, '_elementor_version', '3.35.3'),
(1894, 212, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1895, 212, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1897, 212, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1908, 213, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1909, 214, '_wp_page_template', 'default'),
(1910, 214, '_elementor_edit_mode', 'builder'),
(1911, 214, '_elementor_template_type', 'wp-page'),
(1912, 214, '_elementor_version', '3.35.3'),
(1913, 214, '_elementor_pro_version', '3.25.4'),
(1914, 214, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1916, 214, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1917, 215, '_wp_page_template', 'default'),
(1918, 215, '_elementor_edit_mode', 'builder'),
(1919, 215, '_elementor_template_type', 'wp-page'),
(1920, 215, '_elementor_version', '3.35.3'),
(1921, 215, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1922, 215, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1924, 215, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1932, 218, '_wp_page_template', 'default'),
(1933, 218, '_elementor_edit_mode', 'builder'),
(1934, 218, '_elementor_template_type', 'wp-page'),
(1935, 218, '_elementor_version', '3.35.3'),
(1936, 218, '_elementor_pro_version', '3.25.4'),
(1937, 218, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1926, 216, '_wp_attached_file', '2026/02/nutrition-plan_12640011-1.svg'),
(1927, 216, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6438;s:5:\"width\";i:256;s:6:\"height\";i:256;}'),
(1929, 217, '_wp_attached_file', '2026/02/transportation_18699019.svg'),
(1930, 217, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3932;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1939, 218, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1940, 219, '_wp_page_template', 'default'),
(1941, 219, '_elementor_edit_mode', 'builder'),
(1942, 219, '_elementor_template_type', 'wp-page'),
(1943, 219, '_elementor_version', '3.35.3'),
(1944, 219, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1945, 219, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":183,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/adhd_11374835.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"id\":185,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/hypnosis_16854159.svg\"},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1947, 219, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1948, 220, '_wp_page_template', 'default'),
(1949, 220, '_elementor_edit_mode', 'builder'),
(1950, 220, '_elementor_template_type', 'wp-page'),
(1951, 220, '_elementor_version', '3.35.3'),
(1952, 220, '_elementor_pro_version', '3.25.4'),
(1953, 220, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1955, 220, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1959, 221, '_wp_page_template', 'default'),
(1960, 221, '_elementor_edit_mode', 'builder'),
(1961, 221, '_elementor_template_type', 'wp-page'),
(1962, 221, '_elementor_version', '3.35.3'),
(1963, 221, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1964, 221, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1990, 224, '_wp_page_template', 'default'),
(1991, 224, '_elementor_edit_mode', 'builder'),
(1992, 224, '_elementor_template_type', 'wp-page'),
(1993, 224, '_elementor_version', '3.35.3'),
(1994, 224, '_elementor_pro_version', '3.25.4'),
(1995, 224, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1966, 221, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1969, 222, '_wp_page_template', 'default'),
(1970, 222, '_elementor_edit_mode', 'builder'),
(1971, 222, '_elementor_template_type', 'wp-page'),
(1972, 222, '_elementor_version', '3.35.3'),
(1973, 222, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1974, 222, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"210\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1976, 222, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1979, 223, '_wp_page_template', 'default'),
(1980, 223, '_elementor_edit_mode', 'builder'),
(1981, 223, '_elementor_template_type', 'wp-page'),
(1982, 223, '_elementor_version', '3.35.3'),
(1983, 223, '_elementor_pro_version', '3.25.4'),
(1984, 223, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1986, 223, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1997, 224, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1998, 225, '_wp_page_template', 'default'),
(1999, 225, '_elementor_edit_mode', 'builder'),
(2000, 225, '_elementor_template_type', 'wp-page'),
(2001, 225, '_elementor_version', '3.35.3'),
(2002, 225, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2003, 225, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2005, 225, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2006, 226, '_wp_page_template', 'default'),
(2007, 226, '_elementor_edit_mode', 'builder'),
(2008, 226, '_elementor_template_type', 'wp-page'),
(2009, 226, '_elementor_version', '3.35.3'),
(2010, 226, '_elementor_pro_version', '3.25.4'),
(2011, 226, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2013, 226, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2017, 227, '_wp_page_template', 'default'),
(2018, 227, '_elementor_edit_mode', 'builder'),
(2019, 227, '_elementor_template_type', 'wp-page'),
(2020, 227, '_elementor_version', '3.35.3'),
(2021, 227, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2022, 227, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2048, 230, '_wp_page_template', 'default'),
(2049, 230, '_elementor_edit_mode', 'builder'),
(2050, 230, '_elementor_template_type', 'wp-page'),
(2051, 230, '_elementor_version', '3.35.3'),
(2052, 230, '_elementor_pro_version', '3.25.4'),
(2053, 230, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2024, 227, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2027, 228, '_wp_page_template', 'default'),
(2028, 228, '_elementor_edit_mode', 'builder'),
(2029, 228, '_elementor_template_type', 'wp-page'),
(2030, 228, '_elementor_version', '3.35.3'),
(2031, 228, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2032, 228, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Support comes in many forms. Understanding what\\u2019s available helps you choose what works best.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2034, 228, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2037, 229, '_wp_page_template', 'default'),
(2038, 229, '_elementor_edit_mode', 'builder'),
(2039, 229, '_elementor_template_type', 'wp-page'),
(2040, 229, '_elementor_version', '3.35.3'),
(2041, 229, '_elementor_pro_version', '3.25.4'),
(2042, 229, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2044, 229, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2055, 230, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2056, 231, '_wp_page_template', 'default'),
(2057, 231, '_elementor_edit_mode', 'builder'),
(2058, 231, '_elementor_template_type', 'wp-page'),
(2059, 231, '_elementor_version', '3.35.3'),
(2060, 231, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2061, 231, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects attention, executive function, motivation, and emotional regulation. It\\u2019s more than being distracted.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2063, 231, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2064, 232, '_wp_page_template', 'default'),
(2065, 232, '_elementor_edit_mode', 'builder'),
(2066, 232, '_elementor_template_type', 'wp-page'),
(2067, 232, '_elementor_version', '3.35.3'),
(2068, 232, '_elementor_pro_version', '3.25.4'),
(2069, 232, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2071, 232, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2075, 233, '_wp_page_template', 'default'),
(2076, 233, '_elementor_edit_mode', 'builder'),
(2077, 233, '_elementor_template_type', 'wp-page'),
(2078, 233, '_elementor_version', '3.35.3'),
(2079, 233, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2080, 233, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2106, 236, '_wp_page_template', 'default'),
(2107, 236, '_elementor_edit_mode', 'builder'),
(2108, 236, '_elementor_template_type', 'wp-page'),
(2109, 236, '_elementor_version', '3.35.3'),
(2110, 236, '_elementor_pro_version', '3.25.4'),
(2111, 236, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2082, 233, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2085, 234, '_wp_page_template', 'default'),
(2086, 234, '_elementor_edit_mode', 'builder'),
(2087, 234, '_elementor_template_type', 'wp-page'),
(2088, 234, '_elementor_version', '3.35.3'),
(2089, 234, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2090, 234, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2092, 234, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2255, 250, '_elementor_version', '3.35.3'),
(2095, 235, '_wp_page_template', 'default'),
(2096, 235, '_elementor_edit_mode', 'builder'),
(2097, 235, '_elementor_template_type', 'wp-page'),
(2098, 235, '_elementor_version', '3.35.3'),
(2099, 235, '_elementor_pro_version', '3.25.4'),
(2100, 235, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2102, 235, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2113, 236, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2114, 237, '_wp_page_template', 'default'),
(2115, 237, '_elementor_edit_mode', 'builder'),
(2116, 237, '_elementor_template_type', 'wp-page'),
(2117, 237, '_elementor_version', '3.35.3'),
(2118, 237, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2119, 237, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2121, 237, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2252, 250, '_wp_page_template', 'default'),
(2253, 250, '_elementor_edit_mode', 'builder'),
(2254, 250, '_elementor_template_type', 'wp-page'),
(2122, 238, '_wp_page_template', 'default'),
(2123, 238, '_elementor_edit_mode', 'builder'),
(2124, 238, '_elementor_template_type', 'wp-page'),
(2125, 238, '_elementor_version', '3.35.3'),
(2126, 238, '_elementor_pro_version', '3.25.4'),
(2127, 238, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2129, 238, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2133, 239, '_wp_page_template', 'default'),
(2134, 239, '_elementor_edit_mode', 'builder'),
(2135, 239, '_elementor_template_type', 'wp-page'),
(2136, 239, '_elementor_version', '3.35.3'),
(2137, 239, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2138, 239, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2166, 242, '_wp_page_template', 'default'),
(2167, 242, '_elementor_edit_mode', 'builder'),
(2168, 242, '_elementor_template_type', 'wp-page'),
(2169, 242, '_elementor_version', '3.35.3'),
(2170, 242, '_elementor_pro_version', '3.25.4'),
(2171, 242, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2306, 255, '_wp_page_template', 'default'),
(2307, 255, '_elementor_edit_mode', 'builder'),
(2308, 255, '_elementor_template_type', 'wp-page'),
(2309, 255, '_elementor_version', '3.35.3'),
(2310, 255, '_elementor_pro_version', '3.25.4'),
(2374, 263, '_wp_attached_file', '2026/02/service-area-1.jpg'),
(2375, 263, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2026/02/service-area-1.jpg\";s:8:\"filesize\";i:73642;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"service-area-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"service-area-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:7955;}}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:{}}}'),
(2376, 264, '_wp_attached_file', '2026/02/about-2.jpeg'),
(2377, 264, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:680;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2026/02/about-2.jpeg\";s:8:\"filesize\";i:90602;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"about-2-204x300.jpeg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"about-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8566;}}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:{}}}'),
(2140, 239, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2143, 240, '_wp_page_template', 'default'),
(2144, 240, '_elementor_edit_mode', 'builder'),
(2145, 240, '_elementor_template_type', 'wp-page'),
(2146, 240, '_elementor_version', '3.35.3'),
(2147, 240, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2148, 240, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2150, 240, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2153, 241, '_wp_page_template', 'default'),
(2154, 241, '_elementor_edit_mode', 'builder'),
(2155, 241, '_elementor_template_type', 'wp-page'),
(2156, 241, '_elementor_version', '3.35.3'),
(2157, 241, '_elementor_pro_version', '3.25.4'),
(2158, 241, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2160, 241, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2199, 245, '_wp_page_template', 'default'),
(2200, 245, '_elementor_edit_mode', 'builder'),
(2201, 245, '_elementor_template_type', 'wp-page'),
(2202, 245, '_elementor_version', '3.35.3'),
(2203, 245, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2204, 245, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2173, 242, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2176, 243, '_wp_page_template', 'default'),
(2177, 243, '_elementor_edit_mode', 'builder'),
(2178, 243, '_elementor_template_type', 'wp-page'),
(2179, 243, '_elementor_version', '3.35.3'),
(2180, 243, '_elementor_pro_version', '3.25.4'),
(2181, 243, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2183, 243, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2186, 244, '_wp_page_template', 'default'),
(2187, 244, '_elementor_edit_mode', 'builder'),
(2188, 244, '_elementor_template_type', 'wp-page'),
(2189, 244, '_elementor_version', '3.35.3'),
(2190, 244, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2191, 244, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2193, 244, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2232, 248, '_wp_page_template', 'default'),
(2233, 248, '_elementor_edit_mode', 'builder'),
(2234, 248, '_elementor_template_type', 'wp-page'),
(2235, 248, '_elementor_version', '3.35.3'),
(2236, 248, '_elementor_pro_version', '3.25.4'),
(2237, 248, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2206, 245, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2209, 246, '_wp_page_template', 'default'),
(2210, 246, '_elementor_edit_mode', 'builder'),
(2211, 246, '_elementor_template_type', 'wp-page'),
(2212, 246, '_elementor_version', '3.35.3'),
(2213, 246, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2214, 246, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2216, 246, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2219, 247, '_wp_page_template', 'default'),
(2220, 247, '_elementor_edit_mode', 'builder'),
(2221, 247, '_elementor_template_type', 'wp-page'),
(2222, 247, '_elementor_version', '3.35.3'),
(2223, 247, '_elementor_pro_version', '3.25.4'),
(2224, 247, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2226, 247, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2276, 252, '_wp_page_template', 'default'),
(2277, 252, '_elementor_edit_mode', 'builder'),
(2278, 252, '_elementor_template_type', 'wp-page'),
(2279, 252, '_elementor_version', '3.35.3'),
(2280, 252, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2281, 252, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2239, 248, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2242, 249, '_wp_page_template', 'default'),
(2243, 249, '_elementor_edit_mode', 'builder'),
(2244, 249, '_elementor_template_type', 'wp-page'),
(2245, 249, '_elementor_version', '3.35.3'),
(2246, 249, '_elementor_pro_version', '3.25.4'),
(2247, 249, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/education-hub\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/understanding-adhd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-in-adult-life\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/norisagbonwan-xdfyp.wpcomstaging.com\\/adhd-support-options\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2249, 249, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2256, 250, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2257, 250, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2259, 250, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2311, 255, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}]},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}]},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2301, 254, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2294, 254, '_wp_page_template', 'default'),
(2295, 254, '_elementor_edit_mode', 'builder'),
(2296, 254, '_elementor_template_type', 'wp-page'),
(2297, 254, '_elementor_version', '3.35.3'),
(2298, 254, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2299, 254, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}]},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}]},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2283, 252, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2285, 253, '_wp_page_template', 'default'),
(2286, 253, '_elementor_edit_mode', 'builder'),
(2287, 253, '_elementor_template_type', 'wp-page'),
(2288, 253, '_elementor_version', '3.35.3'),
(2289, 253, '_elementor_pro_version', '3.25.4'),
(2290, 253, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2292, 253, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2343, 260, '_wp_page_template', 'default'),
(2344, 260, '_elementor_edit_mode', 'builder'),
(2345, 260, '_elementor_template_type', 'wp-page'),
(2346, 260, '_elementor_version', '3.35.3'),
(2347, 260, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2348, 260, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}]},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}]},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2313, 255, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2316, 256, '_wp_page_template', 'default'),
(2317, 256, '_elementor_edit_mode', 'builder'),
(2318, 256, '_elementor_template_type', 'wp-page'),
(2319, 256, '_elementor_version', '3.35.3'),
(2320, 256, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2321, 256, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}]},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}]},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2323, 256, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2326, 257, '_wp_page_template', 'default'),
(2327, 257, '_elementor_edit_mode', 'builder'),
(2328, 257, '_elementor_template_type', 'wp-page'),
(2329, 257, '_elementor_version', '3.35.3'),
(2330, 257, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2331, 257, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}]},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}]},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2333, 257, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2378, 265, '_wp_page_template', 'default'),
(2379, 265, '_elementor_edit_mode', 'builder'),
(2380, 265, '_elementor_template_type', 'wp-page'),
(2381, 265, '_elementor_version', '3.35.3'),
(2382, 265, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2383, 265, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Resources.jpeg\",\"id\":258,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Resources-2.jpeg\",\"id\":259,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2339, 258, '_wp_attached_file', '2026/02/Resources.jpeg'),
(2340, 258, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:665;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2026/02/Resources.jpeg\";s:8:\"filesize\";i:70995;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Resources-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16380;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Resources-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8144;}}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:{}}}'),
(2341, 259, '_wp_attached_file', '2026/02/Resources-2.jpeg'),
(2342, 259, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:649;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/02/Resources-2.jpeg\";s:8:\"filesize\";i:84937;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Resources-2-195x300.jpeg\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Resources-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7486;}}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:{}}}'),
(2350, 260, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2353, 261, '_wp_page_template', 'default'),
(2354, 261, '_elementor_edit_mode', 'builder'),
(2355, 261, '_elementor_template_type', 'wp-page'),
(2356, 261, '_elementor_version', '3.35.3'),
(2357, 261, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2358, 261, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}]},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}]},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2360, 261, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2425, 270, '_wp_page_template', 'default'),
(2363, 262, '_wp_page_template', 'default'),
(2364, 262, '_elementor_edit_mode', 'builder'),
(2365, 262, '_elementor_template_type', 'wp-page'),
(2366, 262, '_elementor_version', '3.35.3'),
(2367, 262, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2368, 262, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Resources.jpeg\",\"id\":258,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Resources-2.jpeg\",\"id\":259,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2370, 262, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2385, 265, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2386, 266, '_wp_page_template', 'default'),
(2387, 266, '_elementor_edit_mode', 'builder'),
(2388, 266, '_elementor_template_type', 'wp-page'),
(2389, 266, '_elementor_version', '3.35.3'),
(2390, 266, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2391, 266, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Resources.jpeg\",\"id\":258,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Resources-2.jpeg\",\"id\":259,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2393, 266, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2394, 267, '_wp_page_template', 'default'),
(2395, 267, '_elementor_edit_mode', 'builder'),
(2396, 267, '_elementor_template_type', 'wp-page'),
(2397, 267, '_elementor_version', '3.35.3'),
(2398, 267, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2399, 267, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2401, 267, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2405, 268, '_wp_page_template', 'default'),
(2406, 268, '_elementor_edit_mode', 'builder'),
(2407, 268, '_elementor_template_type', 'wp-page'),
(2408, 268, '_elementor_version', '3.35.3'),
(2409, 268, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2410, 268, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2491, 278, '_wp_page_template', 'default'),
(2492, 278, '_elementor_edit_mode', 'builder'),
(2469, 274, '_wp_attached_file', '2026/02/phone-call_3779208-1.svg'),
(2438, 271, '_wp_page_template', 'default'),
(2439, 271, '_elementor_edit_mode', 'builder'),
(2440, 271, '_elementor_template_type', 'wp-page'),
(2441, 271, '_elementor_version', '3.35.3'),
(2442, 271, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2443, 271, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2470, 274, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1414;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2471, 274, '_elementor_source_image_hash', '7b2a68d6761aae44d22a0e8b793bd2ff1c8add88'),
(2472, 275, '_wp_attached_file', '2026/02/email_12259156-1.svg'),
(2473, 275, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:666;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2474, 275, '_elementor_source_image_hash', 'dbb37af3a6843233813208e0a91268de156b5730'),
(2475, 276, '_elementor_edit_mode', 'builder'),
(2476, 276, '_elementor_template_type', 'container'),
(2477, 276, '_elementor_version', '3.35.3'),
(2478, 276, '_elementor_pro_version', '3.25.4'),
(2479, 276, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2480, 276, '_elementor_data', '[{\"id\":\"44b5154a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\":\"49c44246\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\",\"animation_duration\":\"slow\",\"__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\":\"6814fffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bb2ede2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"780e4c40\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\",\"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-07 to 2026-02-13\",\"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__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7e455aa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\",\"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-07 to 2026-02-13\",\"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__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ed2620b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\",\"animation_duration\":\"slow\",\"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\":\"2ceb9959\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"field_type\":\"text\",\"placeholder\":\"\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"placeholder\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"placeholder\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"placeholder\":\"\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\"},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"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\":[],\"_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\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2412, 268, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2415, 269, '_wp_page_template', 'default'),
(2416, 269, '_elementor_edit_mode', 'builder'),
(2417, 269, '_elementor_template_type', 'wp-page'),
(2418, 269, '_elementor_version', '3.35.3'),
(2419, 269, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2420, 269, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2422, 269, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2426, 270, '_elementor_edit_mode', 'builder'),
(2427, 270, '_elementor_template_type', 'wp-page'),
(2428, 270, '_elementor_version', '3.35.3'),
(2429, 270, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2430, 270, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2432, 270, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2493, 278, '_elementor_template_type', 'wp-page'),
(2494, 278, '_elementor_version', '3.35.3'),
(2495, 278, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2496, 278, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2445, 271, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2448, 272, '_wp_page_template', 'default'),
(2449, 272, '_elementor_edit_mode', 'builder'),
(2450, 272, '_elementor_template_type', 'wp-page'),
(2451, 272, '_elementor_version', '3.35.3'),
(2452, 272, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2453, 272, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2455, 272, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2458, 273, '_wp_page_template', 'default'),
(2459, 273, '_elementor_edit_mode', 'builder'),
(2460, 273, '_elementor_template_type', 'wp-page'),
(2461, 273, '_elementor_version', '3.35.3'),
(2462, 273, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2463, 273, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2465, 273, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2483, 277, '_elementor_edit_mode', 'builder'),
(2484, 277, '_elementor_template_type', 'container'),
(2485, 277, '_elementor_version', '3.35.3'),
(2486, 277, '_elementor_pro_version', '3.25.4'),
(2487, 277, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2488, 277, '_elementor_data', '[{\"id\":\"44b5154a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\":\"49c44246\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\",\"animation_duration\":\"slow\",\"__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\":\"6814fffd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bb2ede2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"780e4c40\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\",\"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-07 to 2026-02-13\",\"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__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7e455aa9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\",\"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-07 to 2026-02-13\",\"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__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ed2620b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\",\"animation_duration\":\"slow\",\"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\":\"2ceb9959\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"field_type\":\"text\",\"placeholder\":\"\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"placeholder\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"placeholder\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"placeholder\":\"\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"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-07 to 2026-02-13\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\",\"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\"},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"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\":[],\"_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\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2490, 276, '_elementor_controls_usage', 'a:5:{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:8:\"icon-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:2;s:4:\"view\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:4:\"link\";i:2;s:10:\"title_size\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:2;s:15:\"position_mobile\";i:2;s:10:\"icon_space\";i:2;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:21:\"section_style_content\";a:2:{s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}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:2:{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:3;}}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:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}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:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:1:{s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_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: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;}}}}}'),
(2498, 278, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2499, 279, '_wp_page_template', 'default'),
(2500, 279, '_elementor_edit_mode', 'builder'),
(2501, 279, '_elementor_template_type', 'wp-page'),
(2502, 279, '_elementor_version', '3.35.3'),
(2503, 279, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2504, 279, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2506, 279, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2507, 280, '_wp_page_template', 'default'),
(2508, 280, '_elementor_edit_mode', 'builder'),
(2509, 280, '_elementor_template_type', 'wp-page'),
(2510, 280, '_elementor_version', '3.35.3'),
(2511, 280, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2512, 280, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"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 &quot;Avalum Care&quot;\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2514, 280, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2518, 281, '_wp_page_template', 'default'),
(2519, 281, '_elementor_edit_mode', 'builder'),
(2520, 281, '_elementor_template_type', 'wp-page'),
(2521, 281, '_elementor_version', '3.35.3'),
(2522, 281, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2523, 281, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"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 &quot;Avalum Care&quot;\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2549, 284, '_wp_page_template', 'default'),
(2550, 284, '_elementor_edit_mode', 'builder'),
(2551, 284, '_elementor_template_type', 'wp-page'),
(2552, 284, '_elementor_version', '3.35.3'),
(2553, 284, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2554, 284, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"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 &quot;Avalum Care&quot;\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2525, 281, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2528, 282, '_wp_page_template', 'default'),
(2529, 282, '_elementor_edit_mode', 'builder'),
(2530, 282, '_elementor_template_type', 'wp-page'),
(2531, 282, '_elementor_version', '3.35.3'),
(2532, 282, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2533, 282, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"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 &quot;Avalum Care&quot;\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2535, 282, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2538, 283, '_wp_page_template', 'default'),
(2539, 283, '_elementor_edit_mode', 'builder'),
(2540, 283, '_elementor_template_type', 'wp-page'),
(2541, 283, '_elementor_version', '3.35.3'),
(2542, 283, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2543, 283, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"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 &quot;Avalum Care&quot;\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2545, 283, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2556, 284, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2557, 285, '_wp_page_template', 'default'),
(2558, 285, '_elementor_edit_mode', 'builder'),
(2559, 285, '_elementor_template_type', 'wp-page'),
(2560, 285, '_elementor_version', '3.35.3'),
(2561, 285, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2562, 285, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are here to answer your questions and help you find the right care solution for yourself or your loved one.\",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(919) 670-9097\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:9196709097\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"essivi@angelsatyourdoor.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:essivi@angelsatyourdoor.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"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 &quot;Avalum Care&quot;\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2564, 285, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2565, 286, '_wp_page_template', 'default'),
(2566, 286, '_elementor_edit_mode', 'builder'),
(2567, 286, '_elementor_template_type', 'wp-page'),
(2568, 286, '_elementor_version', '3.35.3'),
(2569, 286, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2570, 286, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2572, 286, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2576, 287, '_wp_page_template', 'default'),
(2577, 287, '_elementor_edit_mode', 'builder'),
(2578, 287, '_elementor_template_type', 'wp-page'),
(2579, 287, '_elementor_version', '3.35.3'),
(2580, 287, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2581, 287, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2607, 290, '_wp_page_template', 'default'),
(2608, 290, '_elementor_edit_mode', 'builder'),
(2609, 290, '_elementor_template_type', 'wp-page'),
(2610, 290, '_elementor_version', '3.35.3'),
(2611, 290, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2612, 290, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2583, 287, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2586, 288, '_wp_page_template', 'default'),
(2587, 288, '_elementor_edit_mode', 'builder'),
(2588, 288, '_elementor_template_type', 'wp-page'),
(2589, 288, '_elementor_version', '3.35.3'),
(2590, 288, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2591, 288, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2593, 288, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2596, 289, '_wp_page_template', 'default'),
(2597, 289, '_elementor_edit_mode', 'builder'),
(2598, 289, '_elementor_template_type', 'wp-page'),
(2599, 289, '_elementor_version', '3.35.3'),
(2600, 289, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2601, 289, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2603, 289, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2614, 290, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2615, 291, '_wp_page_template', 'default'),
(2616, 291, '_elementor_edit_mode', 'builder'),
(2617, 291, '_elementor_template_type', 'wp-page'),
(2618, 291, '_elementor_version', '3.35.3'),
(2619, 291, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2620, 291, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#212121\"},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2622, 291, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2623, 292, '_wp_page_template', 'default'),
(2624, 292, '_elementor_edit_mode', 'builder'),
(2625, 292, '_elementor_template_type', 'wp-page'),
(2626, 292, '_elementor_version', '3.35.3'),
(2627, 292, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2628, 292, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2630, 292, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2750, 304, '_wp_page_template', 'default'),
(2751, 304, '_elementor_edit_mode', 'builder'),
(2752, 304, '_elementor_template_type', 'wp-page'),
(2753, 304, '_elementor_version', '3.35.3'),
(2754, 304, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2755, 304, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2781, 307, '_wp_page_template', 'default'),
(2782, 307, '_elementor_edit_mode', 'builder'),
(2783, 307, '_elementor_template_type', 'wp-page'),
(2784, 307, '_elementor_version', '3.35.3'),
(2785, 307, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2786, 307, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2634, 293, '_elementor_edit_mode', 'builder'),
(2635, 293, '_elementor_template_type', 'footer'),
(2636, 294, '_elementor_edit_mode', 'builder'),
(2637, 294, '_elementor_template_type', 'footer'),
(2638, 293, '_elementor_version', '3.35.3'),
(2639, 293, '_elementor_pro_version', '3.25.4'),
(2640, 293, '_astra_content_layout_flag', 'disabled'),
(2642, 293, 'ast-title-bar-display', 'disabled'),
(2643, 293, 'ast-featured-img', 'disabled'),
(2644, 293, 'ast-site-content-layout', 'full-width-container'),
(2645, 293, 'site-sidebar-layout', 'no-sidebar'),
(2649, 293, '_elementor_data', '[{\"id\":\"ecf924f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5646b6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be4ab46\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f13bfce\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2540ca0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"fdec318\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d489d2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3983ce0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49fa78c\"}],\"pp_display_conditions\":[{\"_id\":\"ff62ce7\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1128642\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"4bd3cc7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":217,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1c4c1f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"950f36f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e71549\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19654a7\"}],\"pp_display_conditions\":[{\"_id\":\"5107aec\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d959b27\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"39467d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title\":\"Quick Link\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"686b0aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4fb591f\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92bb152\"},{\"text\":\"Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee0a4db\"},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/resources\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2d6770f\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"83c4ff8\"}],\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e78625a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"634469a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c8e0150\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c5f6b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3187e38\"}],\"pp_display_conditions\":[{\"_id\":\"8f786ef\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f34a8a6\",\"elType\":\"widget\",\"settings\":{\"address\":\"USA\",\"height\":{\"unit\":\"px\",\"size\":248,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5827a15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"85fb01f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#33334BE6\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"73adf62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe4523\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd063b3\"}],\"pp_display_conditions\":[{\"_id\":\"93d4132\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"a86b5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 All Rights Reserved\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f446248\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2647, 293, '_edit_lock', '1770737618:1'),
(2648, 293, '_wp_page_template', 'default'),
(2650, 295, '_elementor_edit_mode', 'builder'),
(2651, 295, '_elementor_template_type', 'footer'),
(2652, 295, '_elementor_version', '3.35.3'),
(2653, 295, '_elementor_pro_version', '3.25.4'),
(2654, 295, '_wp_page_template', 'default'),
(2655, 295, '_elementor_data', '[{\"id\":\"ecf924f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5646b6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be4ab46\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f13bfce\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2540ca0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"fdec318\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d489d2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3983ce0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49fa78c\"}],\"pp_display_conditions\":[{\"_id\":\"ff62ce7\"}]},\"elements\":[{\"id\":\"1128642\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1c4c1f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"950f36f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e71549\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19654a7\"}],\"pp_display_conditions\":[{\"_id\":\"5107aec\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"634469a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c8e0150\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c5f6b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3187e38\"}],\"pp_display_conditions\":[{\"_id\":\"8f786ef\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2666, 297, '_elementor_edit_mode', 'builder'),
(2667, 297, '_elementor_template_type', 'footer'),
(2668, 297, '_elementor_version', '3.35.3'),
(2669, 297, '_elementor_pro_version', '3.25.4'),
(2670, 297, '_wp_page_template', 'default'),
(2661, 293, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2671, 297, '_elementor_data', '[{\"id\":\"ecf924f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5646b6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be4ab46\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f13bfce\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2540ca0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"fdec318\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d489d2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3983ce0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49fa78c\"}],\"pp_display_conditions\":[{\"_id\":\"ff62ce7\"}]},\"elements\":[{\"id\":\"1128642\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"4bd3cc7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1c4c1f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"950f36f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e71549\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19654a7\"}],\"pp_display_conditions\":[{\"_id\":\"5107aec\"}]},\"elements\":[{\"id\":\"d959b27\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"39467d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"634469a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c8e0150\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c5f6b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3187e38\"}],\"pp_display_conditions\":[{\"_id\":\"8f786ef\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2675, 297, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2692, 299, '_elementor_edit_mode', 'builder'),
(2693, 299, '_elementor_template_type', 'footer'),
(2694, 299, '_elementor_version', '3.35.3'),
(2695, 299, '_elementor_pro_version', '3.25.4'),
(2696, 299, '_wp_page_template', 'default'),
(2697, 299, '_elementor_data', '[{\"id\":\"ecf924f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5646b6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be4ab46\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f13bfce\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2540ca0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"fdec318\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d489d2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3983ce0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49fa78c\"}],\"pp_display_conditions\":[{\"_id\":\"ff62ce7\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1128642\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"4bd3cc7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":217,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1c4c1f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"950f36f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e71549\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19654a7\"}],\"pp_display_conditions\":[{\"_id\":\"5107aec\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"d959b27\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"39467d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title\":\"Quick Link\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"686b0aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4fb591f\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92bb152\"},{\"text\":\"Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee0a4db\"},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/resources\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2d6770f\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"83c4ff8\"}],\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e78625a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"634469a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c8e0150\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c5f6b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3187e38\"}],\"pp_display_conditions\":[{\"_id\":\"8f786ef\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f34a8a6\",\"elType\":\"widget\",\"settings\":{\"address\":\"USA\",\"height\":{\"unit\":\"px\",\"size\":248,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5827a15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"85fb01f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#33334BE6\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"73adf62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe4523\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd063b3\"}],\"pp_display_conditions\":[{\"_id\":\"93d4132\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"a86b5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 All Rights Reserved\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f446248\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2680, 298, '_elementor_edit_mode', 'builder'),
(2681, 298, '_elementor_template_type', 'footer'),
(2682, 298, '_elementor_version', '3.35.3'),
(2683, 298, '_elementor_pro_version', '3.25.4'),
(2684, 298, '_wp_page_template', 'default'),
(2685, 298, '_elementor_data', '[{\"id\":\"ecf924f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5646b6b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"be4ab46\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f13bfce\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2540ca0\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"fdec318\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3d489d2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3983ce0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49fa78c\"}],\"pp_display_conditions\":[{\"_id\":\"ff62ce7\"}]},\"elements\":[{\"id\":\"1128642\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"4bd3cc7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":217,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1c4c1f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"950f36f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e71549\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19654a7\"}],\"pp_display_conditions\":[{\"_id\":\"5107aec\"}]},\"elements\":[{\"id\":\"d959b27\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"39467d5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title\":\"Quick Link\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"686b0aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4fb591f\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92bb152\"},{\"text\":\"Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee0a4db\"},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/resources\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2d6770f\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"83c4ff8\"}],\"space_between\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e78625a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"634469a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c8e0150\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c5f6b3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3187e38\"}],\"pp_display_conditions\":[{\"_id\":\"8f786ef\"}]},\"elements\":[{\"id\":\"f34a8a6\",\"elType\":\"widget\",\"settings\":{\"address\":\"USA\",\"height\":{\"unit\":\"px\",\"size\":248,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"5827a15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"85fb01f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#33334BE6\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"73adf62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe4523\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd063b3\"}],\"pp_display_conditions\":[{\"_id\":\"93d4132\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"a86b5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026 All Rights Reserved\",\"header_size\":\"p\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f446248\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2687, 298, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2699, 299, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2700, 293, '_elementor_page_settings', 'a:0:{}'),
(2701, 293, '_elementor_controls_usage', 'a:5:{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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;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:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;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:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{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:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";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:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";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: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;}}}}}'),
(2704, 300, '_wp_attached_file', '2026/02/2343-1.jpg.jpeg'),
(2705, 300, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:23:\"2026/02/2343-1.jpg.jpeg\";s:8:\"filesize\";i:908690;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"2343-1.jpg-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16300;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"2343-1.jpg-1024x682.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102880;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"2343-1.jpg-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8642;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"2343-1.jpg-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66151;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"2343-1.jpg-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189509;}}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:{}}}'),
(2713, 301, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2716, 301, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:296;s:3:\"url\";s:131:\"https://mrarif.me/avalumcare/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_70_2026-02-10-15-26-15_6689709d.png\";}'),
(2717, 301, '_elementor_screenshot_failed', '2026-02-10 15:26:26'),
(2736, 303, '_elementor_edit_mode', 'builder'),
(2737, 303, '_elementor_template_type', 'header'),
(2738, 303, '_elementor_version', '3.35.3'),
(2739, 303, '_elementor_pro_version', '3.25.4'),
(2740, 303, '_wp_page_template', 'default'),
(2741, 303, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}]},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}]},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}]},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(2729, 302, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2907, 319, '_elementor_edit_mode', 'builder'),
(2908, 319, '_elementor_template_type', 'header'),
(2909, 319, '_elementor_version', '3.35.3'),
(2910, 319, '_elementor_pro_version', '3.25.4'),
(2911, 319, '_wp_page_template', 'default'),
(2912, 319, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}]},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(2743, 303, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3135, 347, '_elementor_edit_mode', 'builder'),
(3136, 347, '_elementor_template_type', 'header'),
(3137, 347, '_elementor_version', '3.35.3'),
(3138, 347, '_elementor_pro_version', '3.25.4'),
(3139, 347, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3140, 347, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}]},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(2757, 304, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2760, 305, '_wp_page_template', 'default'),
(2761, 305, '_elementor_edit_mode', 'builder'),
(2762, 305, '_elementor_template_type', 'wp-page'),
(2763, 305, '_elementor_version', '3.35.3'),
(2764, 305, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2765, 305, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2767, 305, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2770, 306, '_wp_page_template', 'default'),
(2771, 306, '_elementor_edit_mode', 'builder'),
(2772, 306, '_elementor_template_type', 'wp-page'),
(2773, 306, '_elementor_version', '3.35.3'),
(2774, 306, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2775, 306, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2777, 306, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2788, 307, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2789, 308, '_wp_page_template', 'default'),
(2790, 308, '_elementor_edit_mode', 'builder'),
(2791, 308, '_elementor_template_type', 'wp-page'),
(2792, 308, '_elementor_version', '3.35.3'),
(2793, 308, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2794, 308, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2796, 308, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2797, 309, '_wp_page_template', 'default'),
(2798, 309, '_elementor_edit_mode', 'builder'),
(2799, 309, '_elementor_template_type', 'wp-page'),
(2800, 309, '_elementor_version', '3.35.3'),
(2801, 309, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2802, 309, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2804, 309, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2808, 310, '_wp_page_template', 'default'),
(2809, 310, '_elementor_edit_mode', 'builder'),
(2810, 310, '_elementor_template_type', 'wp-page'),
(2811, 310, '_elementor_version', '3.35.3'),
(2812, 310, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2813, 310, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2841, 313, '_wp_page_template', 'default'),
(2842, 313, '_elementor_edit_mode', 'builder'),
(2843, 313, '_elementor_template_type', 'wp-page'),
(2844, 313, '_elementor_version', '3.35.3'),
(2845, 313, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2846, 313, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3181, 351, '_wp_page_template', 'default'),
(3182, 351, '_elementor_edit_mode', 'builder'),
(3183, 351, '_elementor_template_type', 'wp-page'),
(3184, 351, '_elementor_version', '3.35.3'),
(3185, 351, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3186, 351, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2815, 310, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2818, 311, '_wp_page_template', 'default'),
(2819, 311, '_elementor_edit_mode', 'builder'),
(2820, 311, '_elementor_template_type', 'wp-page'),
(2821, 311, '_elementor_version', '3.35.3'),
(2822, 311, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2823, 311, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}]},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2825, 311, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2828, 312, '_wp_page_template', 'default'),
(2829, 312, '_elementor_edit_mode', 'builder'),
(2830, 312, '_elementor_template_type', 'wp-page'),
(2831, 312, '_elementor_version', '3.35.3'),
(2832, 312, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2833, 312, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2835, 312, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2874, 316, '_wp_page_template', 'default'),
(2875, 316, '_elementor_edit_mode', 'builder'),
(2876, 316, '_elementor_template_type', 'wp-page'),
(2877, 316, '_elementor_version', '3.35.3'),
(2878, 316, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2879, 316, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2848, 313, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2851, 314, '_wp_page_template', 'default'),
(2852, 314, '_elementor_edit_mode', 'builder'),
(2853, 314, '_elementor_template_type', 'wp-page'),
(2854, 314, '_elementor_version', '3.35.3'),
(2855, 314, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2856, 314, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2858, 314, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2861, 315, '_wp_page_template', 'default'),
(2862, 315, '_elementor_edit_mode', 'builder'),
(2863, 315, '_elementor_template_type', 'wp-page'),
(2864, 315, '_elementor_version', '3.35.3'),
(2865, 315, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2866, 315, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2868, 315, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3150, 348, '_wp_page_template', 'default'),
(3151, 348, '_elementor_edit_mode', 'builder'),
(3152, 348, '_elementor_template_type', 'wp-page'),
(3153, 348, '_elementor_version', '3.35.3'),
(3154, 348, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3155, 348, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2881, 316, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2884, 317, '_wp_page_template', 'default'),
(2885, 317, '_elementor_edit_mode', 'builder'),
(2886, 317, '_elementor_template_type', 'wp-page'),
(2887, 317, '_elementor_version', '3.35.3'),
(2888, 317, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2889, 317, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2891, 317, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2894, 318, '_wp_page_template', 'default'),
(2895, 318, '_elementor_edit_mode', 'builder'),
(2896, 318, '_elementor_template_type', 'wp-page'),
(2897, 318, '_elementor_version', '3.35.3'),
(2898, 318, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2899, 318, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(2901, 318, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2914, 319, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3493, 383, '_elementor_edit_mode', 'builder'),
(3494, 383, '_elementor_template_type', 'header'),
(3495, 383, '_elementor_version', '3.35.3'),
(3496, 383, '_elementor_pro_version', '3.25.4'),
(3497, 383, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3498, 383, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(2921, 320, '_edit_last', '1'),
(2922, 320, '_wp_page_template', 'elementor_header_footer'),
(2929, 320, 'ast-featured-img', 'disabled'),
(2925, 320, 'site-sidebar-layout', 'no-sidebar'),
(2926, 320, 'ast-site-content-layout', 'full-width-container'),
(2927, 320, 'site-content-style', 'default'),
(2928, 320, 'site-sidebar-style', 'default'),
(2930, 320, 'astra-migrate-meta-layouts', 'set'),
(2931, 320, 'ast-breadcrumbs-content', 'disabled'),
(2932, 320, 'theme-transparent-header-meta', 'default'),
(2933, 320, '_edit_lock', '1770797750:1'),
(2934, 322, '_edit_last', '1'),
(2935, 322, '_wp_page_template', 'elementor_header_footer'),
(2942, 322, 'ast-featured-img', 'disabled'),
(2938, 322, 'site-sidebar-layout', 'no-sidebar'),
(2939, 322, 'ast-site-content-layout', 'full-width-container'),
(2940, 322, 'site-content-style', 'default'),
(2941, 322, 'site-sidebar-style', 'default'),
(2943, 322, 'astra-migrate-meta-layouts', 'set'),
(2944, 322, 'ast-breadcrumbs-content', 'disabled'),
(2945, 322, 'theme-transparent-header-meta', 'default'),
(2946, 322, '_edit_lock', '1770796973:1'),
(2947, 324, '_edit_last', '1'),
(2948, 324, '_edit_lock', '1770795099:1'),
(2949, 324, '_wp_page_template', 'elementor_header_footer'),
(2956, 324, 'ast-featured-img', 'disabled'),
(2952, 324, 'site-sidebar-layout', 'no-sidebar'),
(2953, 324, 'ast-site-content-layout', 'full-width-container'),
(2954, 324, 'site-content-style', 'default'),
(2955, 324, 'site-sidebar-style', 'default'),
(2957, 324, 'astra-migrate-meta-layouts', 'set'),
(2958, 324, 'ast-breadcrumbs-content', 'disabled'),
(2959, 324, 'theme-transparent-header-meta', 'default'),
(2960, 326, '_edit_last', '1'),
(2961, 326, '_edit_lock', '1770795332:1'),
(2962, 326, '_wp_page_template', 'elementor_header_footer'),
(2969, 326, 'ast-featured-img', 'disabled'),
(2965, 326, 'site-sidebar-layout', 'no-sidebar'),
(2966, 326, 'ast-site-content-layout', 'full-width-container'),
(2967, 326, 'site-content-style', 'default'),
(2968, 326, 'site-sidebar-style', 'default'),
(2970, 326, 'astra-migrate-meta-layouts', 'set'),
(2971, 326, 'ast-breadcrumbs-content', 'disabled'),
(2972, 326, 'theme-transparent-header-meta', 'default'),
(2973, 328, '_edit_last', '1'),
(2974, 328, '_edit_lock', '1770795836:1'),
(2975, 328, '_wp_page_template', 'elementor_header_footer'),
(2982, 328, 'ast-featured-img', 'disabled'),
(2978, 328, 'site-sidebar-layout', 'no-sidebar'),
(2979, 328, 'ast-site-content-layout', 'full-width-container'),
(2980, 328, 'site-content-style', 'default'),
(2981, 328, 'site-sidebar-style', 'default'),
(2983, 328, 'astra-migrate-meta-layouts', 'set'),
(2984, 328, 'ast-breadcrumbs-content', 'disabled'),
(2985, 328, 'theme-transparent-header-meta', 'default'),
(2986, 330, '_edit_last', '1'),
(2987, 330, '_edit_lock', '1770798294:1'),
(2988, 330, '_wp_page_template', 'elementor_header_footer'),
(2995, 330, 'ast-featured-img', 'disabled'),
(2991, 330, 'site-sidebar-layout', 'no-sidebar'),
(2992, 330, 'ast-site-content-layout', 'full-width-container'),
(2993, 330, 'site-content-style', 'default'),
(2994, 330, 'site-sidebar-style', 'default'),
(2996, 330, 'astra-migrate-meta-layouts', 'set'),
(2997, 330, 'ast-breadcrumbs-content', 'disabled'),
(2998, 330, 'theme-transparent-header-meta', 'default'),
(2999, 332, '_edit_last', '1'),
(3000, 332, '_wp_page_template', 'elementor_header_footer'),
(3007, 332, 'ast-featured-img', 'disabled'),
(3003, 332, 'site-sidebar-layout', 'no-sidebar'),
(3004, 332, 'ast-site-content-layout', 'full-width-container'),
(3005, 332, 'site-content-style', 'default'),
(3006, 332, 'site-sidebar-style', 'default'),
(3008, 332, 'astra-migrate-meta-layouts', 'set'),
(3009, 332, 'ast-breadcrumbs-content', 'disabled'),
(3010, 332, 'theme-transparent-header-meta', 'default'),
(3011, 332, '_edit_lock', '1770796538:1'),
(3012, 334, '_edit_last', '1'),
(3013, 334, '_wp_page_template', 'default'),
(3014, 334, 'site-post-title', 'disabled'),
(3020, 334, 'ast-featured-img', 'disabled'),
(3016, 334, 'site-sidebar-layout', 'no-sidebar'),
(3017, 334, 'ast-site-content-layout', 'full-width-container'),
(3018, 334, 'site-content-style', 'default'),
(3019, 334, 'site-sidebar-style', 'default'),
(3021, 334, 'astra-migrate-meta-layouts', 'set'),
(3022, 334, 'ast-breadcrumbs-content', 'disabled'),
(3023, 334, 'theme-transparent-header-meta', 'default'),
(3024, 334, '_edit_lock', '1770796707:1'),
(3025, 336, '_edit_last', '1'),
(3026, 336, '_wp_page_template', 'default'),
(3027, 336, 'site-post-title', 'disabled'),
(3033, 336, 'ast-featured-img', 'disabled'),
(3029, 336, 'site-sidebar-layout', 'no-sidebar'),
(3030, 336, 'ast-site-content-layout', 'full-width-container'),
(3031, 336, 'site-content-style', 'default'),
(3032, 336, 'site-sidebar-style', 'default'),
(3034, 336, 'astra-migrate-meta-layouts', 'set'),
(3035, 336, 'ast-breadcrumbs-content', 'disabled'),
(3036, 336, 'theme-transparent-header-meta', 'default'),
(3037, 336, '_edit_lock', '1770796983:1'),
(3038, 338, '_menu_item_type', 'post_type'),
(3039, 338, '_menu_item_menu_item_parent', '42'),
(3040, 338, '_menu_item_object_id', '336'),
(3041, 338, '_menu_item_object', 'page'),
(3042, 338, '_menu_item_target', ''),
(3043, 338, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3044, 338, '_menu_item_xfn', ''),
(3045, 338, '_menu_item_url', ''),
(3122, 40, '_wp_old_date', '2026-02-10'),
(3047, 339, '_menu_item_type', 'post_type'),
(3048, 339, '_menu_item_menu_item_parent', '42'),
(3049, 339, '_menu_item_object_id', '334'),
(3050, 339, '_menu_item_object', 'page'),
(3051, 339, '_menu_item_target', ''),
(3052, 339, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3053, 339, '_menu_item_xfn', ''),
(3054, 339, '_menu_item_url', ''),
(3123, 39, '_wp_old_date', '2026-02-10'),
(3056, 340, '_menu_item_type', 'post_type'),
(3057, 340, '_menu_item_menu_item_parent', '42'),
(3058, 340, '_menu_item_object_id', '332'),
(3059, 340, '_menu_item_object', 'page'),
(3060, 340, '_menu_item_target', ''),
(3061, 340, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3062, 340, '_menu_item_xfn', ''),
(3063, 340, '_menu_item_url', ''),
(3065, 341, '_menu_item_type', 'post_type'),
(3066, 341, '_menu_item_menu_item_parent', '42'),
(3067, 341, '_menu_item_object_id', '330'),
(3068, 341, '_menu_item_object', 'page'),
(3069, 341, '_menu_item_target', ''),
(3070, 341, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3071, 341, '_menu_item_xfn', ''),
(3072, 341, '_menu_item_url', ''),
(3074, 342, '_menu_item_type', 'post_type'),
(3075, 342, '_menu_item_menu_item_parent', '42'),
(3076, 342, '_menu_item_object_id', '328'),
(3077, 342, '_menu_item_object', 'page'),
(3078, 342, '_menu_item_target', ''),
(3079, 342, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3080, 342, '_menu_item_xfn', ''),
(3081, 342, '_menu_item_url', ''),
(3083, 343, '_menu_item_type', 'post_type'),
(3084, 343, '_menu_item_menu_item_parent', '42'),
(3085, 343, '_menu_item_object_id', '326'),
(3086, 343, '_menu_item_object', 'page'),
(3087, 343, '_menu_item_target', ''),
(3088, 343, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3089, 343, '_menu_item_xfn', ''),
(3090, 343, '_menu_item_url', ''),
(3126, 293, '_elementor_screenshot_failed', '2026-02-11 06:13:06'),
(3092, 344, '_menu_item_type', 'post_type'),
(3093, 344, '_menu_item_menu_item_parent', '42'),
(3094, 344, '_menu_item_object_id', '324'),
(3095, 344, '_menu_item_object', 'page'),
(3096, 344, '_menu_item_target', ''),
(3097, 344, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3098, 344, '_menu_item_xfn', ''),
(3099, 344, '_menu_item_url', ''),
(3101, 345, '_menu_item_type', 'post_type'),
(3102, 345, '_menu_item_menu_item_parent', '42'),
(3103, 345, '_menu_item_object_id', '322'),
(3104, 345, '_menu_item_object', 'page'),
(3105, 345, '_menu_item_target', ''),
(3106, 345, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3107, 345, '_menu_item_xfn', ''),
(3108, 345, '_menu_item_url', ''),
(3110, 346, '_menu_item_type', 'post_type'),
(3111, 346, '_menu_item_menu_item_parent', '42'),
(3112, 346, '_menu_item_object_id', '320'),
(3113, 346, '_menu_item_object', 'page'),
(3114, 346, '_menu_item_target', ''),
(3115, 346, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3116, 346, '_menu_item_xfn', ''),
(3117, 346, '_menu_item_url', ''),
(3119, 37, '_wp_old_date', '2026-02-10'),
(3120, 38, '_wp_old_date', '2026-02-10'),
(3121, 42, '_wp_old_date', '2026-02-10'),
(3142, 347, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3145, 347, '_elementor_screenshot_failed', '2026-02-11 06:12:45'),
(4644, 514, '_elementor_edit_mode', 'builder'),
(4645, 514, '_elementor_template_type', 'header'),
(4646, 514, '_elementor_version', '3.35.3'),
(4647, 514, '_elementor_pro_version', '3.25.4'),
(4648, 514, '_wp_page_template', 'default'),
(4649, 514, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(3505, 31, '_elementor_edit_mode', 'builder'),
(3506, 31, '_astra_content_layout_flag', 'disabled'),
(3507, 31, 'ast-title-bar-display', 'disabled'),
(3508, 31, '_elementor_template_type', 'wp-page'),
(3509, 31, '_elementor_version', '3.35.3'),
(3510, 31, '_elementor_pro_version', '3.25.4'),
(3528, 31, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/companionship\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/errand-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/light-housekeeping\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/new-boost\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3157, 348, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3160, 349, '_wp_page_template', 'default'),
(3161, 349, '_elementor_edit_mode', 'builder'),
(3162, 349, '_elementor_template_type', 'wp-page'),
(3163, 349, '_elementor_version', '3.35.3'),
(3164, 349, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3165, 349, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3167, 349, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3170, 350, '_wp_page_template', 'default'),
(3171, 350, '_elementor_edit_mode', 'builder'),
(3172, 350, '_elementor_template_type', 'wp-page'),
(3173, 350, '_elementor_version', '3.35.3'),
(3174, 350, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3175, 350, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3177, 350, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3188, 351, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3189, 352, '_wp_page_template', 'default'),
(3190, 352, '_elementor_edit_mode', 'builder'),
(3191, 352, '_elementor_template_type', 'wp-page'),
(3192, 352, '_elementor_version', '3.35.3'),
(3193, 352, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3194, 352, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3196, 352, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3197, 353, '_wp_page_template', 'default'),
(3198, 353, '_elementor_edit_mode', 'builder'),
(3199, 353, '_elementor_template_type', 'wp-page'),
(3200, 353, '_elementor_version', '3.35.3'),
(3201, 353, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3202, 353, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3204, 353, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3206, 354, '_wp_page_template', 'default'),
(3207, 354, '_elementor_edit_mode', 'builder'),
(3208, 354, '_elementor_template_type', 'wp-page'),
(3209, 354, '_elementor_version', '3.35.3'),
(3210, 354, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3211, 354, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3213, 354, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3214, 355, '_wp_page_template', 'default'),
(3215, 355, '_elementor_edit_mode', 'builder'),
(3216, 355, '_elementor_template_type', 'wp-page'),
(3217, 355, '_elementor_version', '3.35.3'),
(3218, 355, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3219, 355, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3221, 355, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3222, 356, '_wp_page_template', 'default'),
(3223, 356, '_elementor_edit_mode', 'builder'),
(3224, 356, '_elementor_template_type', 'wp-page'),
(3225, 356, '_elementor_version', '3.35.3'),
(3226, 356, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3227, 356, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3229, 356, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3233, 357, '_wp_page_template', 'default'),
(3234, 357, '_elementor_edit_mode', 'builder'),
(3235, 357, '_elementor_template_type', 'wp-page'),
(3236, 357, '_elementor_version', '3.35.3'),
(3237, 357, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3238, 357, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3460, 380, '_wp_page_template', 'default'),
(3461, 380, '_elementor_edit_mode', 'builder'),
(3462, 380, '_elementor_template_type', 'wp-page'),
(3463, 380, '_elementor_version', '3.35.3'),
(3464, 380, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3465, 380, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3760, 413, '_elementor_page_settings', 'a:0:{}'),
(3763, 414, '_wp_page_template', 'elementor_header_footer'),
(3765, 414, '_elementor_edit_mode', 'builder'),
(3766, 414, '_elementor_template_type', 'wp-page'),
(3767, 414, '_elementor_version', '3.35.3'),
(3768, 414, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3769, 414, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/romantic-relationship_12471512-1.svg\",\"id\":402},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/bucket_4254709.svg\",\"id\":405},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3240, 357, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3243, 358, '_wp_page_template', 'default'),
(3244, 358, '_elementor_edit_mode', 'builder'),
(3245, 358, '_elementor_template_type', 'wp-page'),
(3246, 358, '_elementor_version', '3.35.3'),
(3247, 358, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3248, 358, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3250, 358, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3253, 359, '_wp_page_template', 'default'),
(3254, 359, '_elementor_edit_mode', 'builder'),
(3255, 359, '_elementor_template_type', 'wp-page'),
(3256, 359, '_elementor_version', '3.35.3'),
(3257, 359, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3258, 359, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3260, 359, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3722, 410, '_wp_page_template', 'default'),
(3723, 410, '_elementor_edit_mode', 'builder'),
(3724, 410, '_elementor_template_type', 'wp-page'),
(3725, 410, '_elementor_version', '3.35.3'),
(3726, 410, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3727, 410, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3266, 29, '_elementor_edit_mode', 'builder'),
(3267, 29, '_astra_content_layout_flag', 'disabled'),
(3268, 29, 'ast-title-bar-display', 'disabled'),
(3269, 29, '_elementor_template_type', 'wp-page'),
(3270, 29, '_elementor_version', '3.35.3'),
(3271, 29, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3287, 29, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"flex_direction_mobile_extra\":\"column-reverse\",\"flex_wrap_mobile_extra\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Philanthropy.jpg\",\"id\":373,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3273, 360, '_wp_page_template', 'elementor_header_footer'),
(3275, 360, '_elementor_edit_mode', 'builder'),
(3276, 360, '_elementor_template_type', 'wp-page'),
(3277, 360, '_elementor_version', '3.35.3'),
(3278, 360, '_elementor_pro_version', '3.25.4'),
(3279, 360, '_elementor_page_settings', 'a:0:{}'),
(3280, 361, '_wp_page_template', 'elementor_header_footer'),
(3282, 361, '_elementor_edit_mode', 'builder'),
(3283, 361, '_elementor_template_type', 'wp-page'),
(3284, 361, '_elementor_version', '3.35.3'),
(3285, 361, '_elementor_pro_version', '3.25.4'),
(3286, 361, '_elementor_page_settings', 'a:0:{}'),
(3288, 362, '_wp_page_template', 'elementor_header_footer'),
(3290, 362, '_elementor_edit_mode', 'builder'),
(3291, 362, '_elementor_template_type', 'wp-page'),
(3292, 362, '_elementor_version', '3.35.3'),
(3293, 362, '_elementor_pro_version', '3.25.4'),
(3294, 362, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3297, 363, '_wp_page_template', 'elementor_header_footer'),
(3299, 363, '_elementor_edit_mode', 'builder'),
(3300, 363, '_elementor_template_type', 'wp-page'),
(3301, 363, '_elementor_version', '3.35.3'),
(3302, 363, '_elementor_pro_version', '3.25.4'),
(3303, 363, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3304, 363, '_elementor_page_settings', 'a:0:{}'),
(3305, 364, '_wp_page_template', 'elementor_header_footer'),
(3307, 364, '_elementor_edit_mode', 'builder'),
(3308, 364, '_elementor_template_type', 'wp-page'),
(3309, 364, '_elementor_version', '3.35.3'),
(3310, 364, '_elementor_pro_version', '3.25.4'),
(3311, 364, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3312, 364, '_elementor_page_settings', 'a:0:{}'),
(3313, 365, '_wp_page_template', 'elementor_header_footer'),
(3315, 365, '_elementor_edit_mode', 'builder'),
(3316, 365, '_elementor_template_type', 'wp-page'),
(3317, 365, '_elementor_version', '3.35.3'),
(3318, 365, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3319, 365, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}]},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}]},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3326, 367, '_wp_page_template', 'elementor_header_footer'),
(3328, 367, '_elementor_edit_mode', 'builder'),
(3329, 367, '_elementor_template_type', 'wp-page'),
(3330, 367, '_elementor_version', '3.35.3'),
(3331, 367, '_elementor_pro_version', '3.25.4'),
(3332, 367, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}]},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}]},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3359, 370, '_wp_page_template', 'elementor_header_footer'),
(3361, 370, '_elementor_edit_mode', 'builder'),
(3362, 370, '_elementor_template_type', 'wp-page'),
(3363, 370, '_elementor_version', '3.35.3'),
(3364, 370, '_elementor_pro_version', '3.25.4'),
(3365, 370, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3324, 366, '_wp_attached_file', '2026/02/Our-Mission-3.jpg'),
(3325, 366, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:25:\"2026/02/Our-Mission-3.jpg\";s:8:\"filesize\";i:88029;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Our-Mission-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18692;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Our-Mission-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8062;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Our-Mission-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82510;}}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:{}}}'),
(3333, 367, '_elementor_page_settings', 'a:0:{}'),
(3336, 368, '_wp_page_template', 'elementor_header_footer'),
(3338, 368, '_elementor_edit_mode', 'builder'),
(3339, 368, '_elementor_template_type', 'wp-page'),
(3340, 368, '_elementor_version', '3.35.3'),
(3341, 368, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3342, 368, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}]},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}]},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3343, 368, '_elementor_page_settings', 'a:0:{}'),
(3346, 369, '_wp_page_template', 'elementor_header_footer'),
(3348, 369, '_elementor_edit_mode', 'builder'),
(3349, 369, '_elementor_template_type', 'wp-page'),
(3350, 369, '_elementor_version', '3.35.3'),
(3351, 369, '_elementor_pro_version', '3.25.4'),
(3352, 369, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3414, 376, '_wp_page_template', 'elementor_header_footer'),
(3394, 374, '_wp_page_template', 'elementor_header_footer'),
(3396, 374, '_elementor_edit_mode', 'builder'),
(3397, 374, '_elementor_template_type', 'wp-page'),
(3398, 374, '_elementor_version', '3.35.3'),
(3399, 374, '_elementor_pro_version', '3.25.4'),
(3400, 374, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3366, 370, '_elementor_page_settings', 'a:0:{}'),
(3369, 371, '_wp_page_template', 'elementor_header_footer'),
(3371, 371, '_elementor_edit_mode', 'builder'),
(3372, 371, '_elementor_template_type', 'wp-page'),
(3373, 371, '_elementor_version', '3.35.3'),
(3374, 371, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3375, 371, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3376, 371, '_elementor_page_settings', 'a:0:{}'),
(3379, 372, '_wp_page_template', 'elementor_header_footer'),
(3381, 372, '_elementor_edit_mode', 'builder'),
(3382, 372, '_elementor_template_type', 'wp-page'),
(3383, 372, '_elementor_version', '3.35.3'),
(3384, 372, '_elementor_pro_version', '3.25.4'),
(3385, 372, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3427, 377, '_wp_page_template', 'elementor_header_footer'),
(3429, 377, '_elementor_edit_mode', 'builder'),
(3430, 377, '_elementor_template_type', 'wp-page'),
(3431, 377, '_elementor_version', '3.35.3'),
(3432, 377, '_elementor_pro_version', '3.25.4'),
(3433, 377, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Philanthropy.jpg\",\"id\":373,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3392, 373, '_wp_attached_file', '2026/02/Our-Philanthropy.jpg'),
(3393, 373, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:28:\"2026/02/Our-Philanthropy.jpg\";s:8:\"filesize\";i:83222;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Our-Philanthropy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18130;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Our-Philanthropy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Our-Philanthropy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77438;}}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:{}}}'),
(3401, 374, '_elementor_page_settings', 'a:0:{}'),
(3404, 375, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3406, 375, '_elementor_edit_mode', 'builder'),
(3407, 375, '_elementor_template_type', 'wp-page'),
(3408, 375, '_elementor_version', '3.35.3'),
(3409, 375, '_elementor_pro_version', '3.25.4'),
(3410, 375, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3411, 375, '_elementor_page_settings', 'a:0:{}'),
(3416, 376, '_elementor_edit_mode', 'builder'),
(3417, 376, '_elementor_template_type', 'wp-page'),
(3418, 376, '_elementor_version', '3.35.3'),
(3419, 376, '_elementor_pro_version', '3.25.4'),
(3420, 376, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Philanthropy.jpg\",\"id\":373,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3456, 29, '_elementor_page_settings', 'a:0:{}'),
(3457, 29, '_elementor_controls_usage', 'a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:4;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:4;s:10:\"image_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:9:{s:5:\"align\";i:2;s:5:\"width\";i:2;s:5:\"space\";i:2;s:19:\"image_border_radius\";i:3;s:6:\"height\";i:2;s:10:\"object-fit\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:27:\"image_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:4;}s:14:\"_section_style\";a:4:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"counter\";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_counter\";a:2:{s:13:\"ending_number\";i:1;s:5:\"title\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:2:{s:28:\"typography_number_typography\";i:1;s:27:\"typography_number_font_size\";i:1;}s:13:\"section_title\";a:1:{s:27:\"typography_title_typography\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";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:9:\"container\";a:3:{s:5:\"count\";i:9;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:9;s:13:\"content_width\";i:6;s:5:\"width\";i:6;s:8:\"flex_gap\";i:4;s:20:\"flex_justify_content\";i:3;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:9;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"section_layout\";a:3:{s:11:\"css_classes\";i:2;s:6:\"margin\";i:1;s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:18:\"animation_duration\";i:6;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";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:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}s:18:\"section_text_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:10:\"text_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:\"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:2:{s:21:\"typography_typography\";i:3;s:25:\"typography_text_transform\";i:3;}}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: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:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}}'),
(3434, 377, '_elementor_page_settings', 'a:0:{}'),
(3437, 378, '_wp_page_template', 'elementor_header_footer'),
(3439, 378, '_elementor_edit_mode', 'builder'),
(3440, 378, '_elementor_template_type', 'wp-page'),
(3441, 378, '_elementor_version', '3.35.3'),
(3442, 378, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3443, 378, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"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\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Philanthropy.jpg\",\"id\":373,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3444, 378, '_elementor_page_settings', 'a:0:{}'),
(3447, 379, '_wp_page_template', 'elementor_header_footer'),
(3449, 379, '_elementor_edit_mode', 'builder'),
(3450, 379, '_elementor_template_type', 'wp-page'),
(3451, 379, '_elementor_version', '3.35.3'),
(3452, 379, '_elementor_pro_version', '3.25.4'),
(3453, 379, '_elementor_data', '[{\"id\":\"4e994a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9ac738c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4364a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"157c682\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"55f7bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bb4d4ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a4ade\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e4301f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89408c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there\\u2019s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it\\u2019s preparing a meal or providing 24-hour care, we will be there for you.<\\/p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0363641\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"flex_direction_mobile_extra\":\"column-reverse\",\"flex_wrap_mobile_extra\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"812895a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d717806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our  <span style=\\\" font-weight:100;\\\">Mission<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26e3009\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone\\u2019s idea of \\u201cquality of life\\u201d is different, which is why it\\u2019s so important to us to make you an active part of your own care plan. We want you to be in the driver\\u2019s seat regardless of any limitations or challenges you\\u2019re facing.<\\/p><p>Most of all, we believe aging isn\\u2019t just about staying healthy, safe and independent. It\\u2019s also about living well.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"42ef854\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9c57748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Mission-3.jpg\",\"id\":366,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f1ed9ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de3ca1f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"61be72e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c2c2a3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8fbefd5\"}]},\"elements\":[{\"id\":\"d5bf981\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cf1dda3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f3eecd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"39daf3b\"}],\"pp_display_conditions\":[{\"_id\":\"c8d19ce\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca482d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our   <span style=\\\" font-weight:100;\\\">Philanthropy<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b6ae89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.<\\/p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team\\u2019s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"25889d9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1ecf9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"512bba2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f67a43\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a6c6436\"}],\"pp_display_conditions\":[{\"_id\":\"8f97e12\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"803c490\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Our-Philanthropy.jpg\",\"id\":373,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9d7d58c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3467, 380, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3470, 381, '_wp_page_template', 'default'),
(3471, 381, '_elementor_edit_mode', 'builder'),
(3472, 381, '_elementor_template_type', 'wp-page'),
(3473, 381, '_elementor_version', '3.35.3'),
(3474, 381, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3475, 381, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3477, 381, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5001, 555, '_elementor_version', '3.35.3'),
(5002, 555, '_elementor_pro_version', '3.25.4'),
(3480, 382, '_wp_page_template', 'default'),
(3481, 382, '_elementor_edit_mode', 'builder'),
(3482, 382, '_elementor_template_type', 'wp-page'),
(3483, 382, '_elementor_version', '3.35.3'),
(3484, 382, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3485, 382, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3487, 382, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3815, 421, '_wp_page_template', 'default'),
(3816, 421, '_elementor_edit_mode', 'builder'),
(3817, 421, '_elementor_template_type', 'wp-page'),
(3818, 421, '_elementor_version', '3.35.3'),
(3819, 421, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3820, 421, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3500, 383, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5281, 582, '_elementor_edit_mode', 'builder'),
(5282, 582, '_elementor_template_type', 'header'),
(5283, 582, '_elementor_version', '3.35.3'),
(5284, 582, '_elementor_pro_version', '3.25.4'),
(5285, 582, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5286, 582, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#8cca1f\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#8cca1f\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#E9EBED\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(3514, 384, '_wp_page_template', 'elementor_header_footer'),
(3516, 384, '_elementor_edit_mode', 'builder'),
(3517, 384, '_elementor_template_type', 'wp-page'),
(3518, 384, '_elementor_version', '3.35.3'),
(3519, 384, '_elementor_pro_version', '3.25.4'),
(3520, 384, '_elementor_page_settings', 'a:0:{}'),
(3521, 385, '_wp_page_template', 'elementor_header_footer'),
(3523, 385, '_elementor_edit_mode', 'builder'),
(3524, 385, '_elementor_template_type', 'wp-page'),
(3525, 385, '_elementor_version', '3.35.3'),
(3526, 385, '_elementor_pro_version', '3.25.4'),
(3527, 385, '_elementor_page_settings', 'a:0:{}'),
(3569, 390, '_wp_page_template', 'elementor_header_footer'),
(3571, 390, '_elementor_edit_mode', 'builder'),
(3572, 390, '_elementor_template_type', 'wp-page'),
(3573, 390, '_elementor_version', '3.35.3'),
(3574, 390, '_elementor_pro_version', '3.25.4'),
(3575, 390, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3696, 407, '_elementor_page_settings', 'a:0:{}'),
(3699, 408, '_wp_page_template', 'elementor_header_footer'),
(3701, 408, '_elementor_edit_mode', 'builder'),
(3702, 408, '_elementor_template_type', 'wp-page'),
(3703, 408, '_elementor_version', '3.35.3'),
(3704, 408, '_elementor_pro_version', '3.25.4'),
(3705, 408, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3706, 408, '_elementor_page_settings', 'a:0:{}'),
(3711, 409, '_elementor_edit_mode', 'builder'),
(3712, 409, '_elementor_template_type', 'wp-page'),
(3713, 409, '_elementor_version', '3.35.3'),
(3714, 409, '_elementor_pro_version', '3.25.4'),
(3715, 409, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/romantic-relationship_12471512-1.svg\",\"id\":402},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/bucket_4254709.svg\",\"id\":405},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3806, 420, '_wp_page_template', 'elementor_header_footer'),
(3792, 418, '_elementor_edit_mode', 'builder'),
(3793, 418, '_elementor_template_type', 'wp-page'),
(3794, 418, '_elementor_version', '3.35.3'),
(3795, 418, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3796, 418, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/romantic-relationship_12471512-1.svg\",\"id\":402},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/bucket_4254709.svg\",\"id\":405},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3529, 386, '_wp_page_template', 'elementor_header_footer'),
(3531, 386, '_elementor_edit_mode', 'builder'),
(3532, 386, '_elementor_template_type', 'wp-page'),
(3533, 386, '_elementor_version', '3.35.3'),
(3534, 386, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3535, 386, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13: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-08 to 2026-02-14\",\"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\",\"align\":\"center\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"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_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_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-08 to 2026-02-14\",\"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__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"columns_widescreen\":\"\",\"columns_tablet\":\"2\",\"columns_mobile\":\"1\",\"thumbnail_size\":\"full\",\"thumbnail_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"divider_title_switch\":\"\",\"sub_title_html_tag\":\"h5\",\"carousel_effect\":\"slide\",\"items\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"items_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_tablet\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"items_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slider_speed\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"autoplay\":\"yes\",\"pause_on_hover\":\"\",\"pause_on_interaction\":\"\",\"autoplay_speed\":{\"unit\":\"px\",\"size\":3000,\"sizes\":[]},\"infinite_loop\":\"yes\",\"centered_slides\":\"\",\"grab_cursor\":\"\",\"arrows\":\"yes\",\"dots\":\"yes\",\"pagination_type\":\"bullets\",\"direction\":\"left\",\"align\":\"center\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"columns_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rows_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_color\":\"#FFFFFF\",\"info_box_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"info_box_background_color_stop_widescreen\":{\"unit\":\"%\"},\"info_box_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"info_box_background_color_stop_tablet\":{\"unit\":\"%\"},\"info_box_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"info_box_background_color_stop_mobile\":{\"unit\":\"%\"},\"info_box_background_color_b\":\"#f2295b\",\"info_box_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"info_box_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"info_box_background_gradient_type\":\"linear\",\"info_box_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"info_box_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"info_box_background_gradient_position\":\"center center\",\"info_box_background_gradient_position_widescreen\":\"\",\"info_box_background_gradient_position_tablet_extra\":\"\",\"info_box_background_gradient_position_tablet\":\"\",\"info_box_background_gradient_position_mobile_extra\":\"\",\"info_box_background_gradient_position_mobile\":\"\",\"info_box_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_position\":\"\",\"info_box_background_position_widescreen\":\"\",\"info_box_background_position_tablet_extra\":\"\",\"info_box_background_position_tablet\":\"\",\"info_box_background_position_mobile_extra\":\"\",\"info_box_background_position_mobile\":\"\",\"info_box_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_attachment\":\"\",\"info_box_background_repeat\":\"\",\"info_box_background_repeat_widescreen\":\"\",\"info_box_background_repeat_tablet_extra\":\"\",\"info_box_background_repeat_tablet\":\"\",\"info_box_background_repeat_mobile_extra\":\"\",\"info_box_background_repeat_mobile\":\"\",\"info_box_background_size\":\"\",\"info_box_background_size_widescreen\":\"\",\"info_box_background_size_tablet_extra\":\"\",\"info_box_background_size_tablet\":\"\",\"info_box_background_size_mobile_extra\":\"\",\"info_box_background_size_mobile\":\"\",\"info_box_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"info_box_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_video_link\":\"\",\"info_box_background_video_start\":\"\",\"info_box_background_video_end\":\"\",\"info_box_background_play_once\":\"\",\"info_box_background_play_on_mobile\":\"\",\"info_box_background_privacy_mode\":\"\",\"info_box_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_slideshow_gallery\":[],\"info_box_background_slideshow_loop\":\"yes\",\"info_box_background_slideshow_slide_duration\":5000,\"info_box_background_slideshow_slide_transition\":\"fade\",\"info_box_background_slideshow_transition_duration\":500,\"info_box_background_slideshow_background_size\":\"\",\"info_box_background_slideshow_background_size_widescreen\":\"\",\"info_box_background_slideshow_background_size_tablet_extra\":\"\",\"info_box_background_slideshow_background_size_tablet\":\"\",\"info_box_background_slideshow_background_size_mobile_extra\":\"\",\"info_box_background_slideshow_background_size_mobile\":\"\",\"info_box_background_slideshow_background_position\":\"\",\"info_box_background_slideshow_background_position_widescreen\":\"\",\"info_box_background_slideshow_background_position_tablet_extra\":\"\",\"info_box_background_slideshow_background_position_tablet\":\"\",\"info_box_background_slideshow_background_position_mobile_extra\":\"\",\"info_box_background_slideshow_background_position_mobile\":\"\",\"info_box_background_slideshow_lazyload\":\"\",\"info_box_background_slideshow_ken_burns\":\"\",\"info_box_background_slideshow_ken_burns_zoom_direction\":\"in\",\"info_box_border_border\":\"\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_color\":\"\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"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\":[]},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"icon_border_border\":\"\",\"icon_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_color\":\"\",\"icon_rotation\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover\":\"\",\"icon_bg_color_hover\":\"\",\"icon_border_color_hover\":\"\",\"icon_rotation_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_animation\":\"\",\"icon_img_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_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\":[]},\"title_color\":\"\",\"title_typography_font_family\":\"\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_text_transform\":\"\",\"title_typography_font_style\":\"\",\"title_typography_text_decoration\":\"\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color\":\"\",\"subtitle_typography_typography\":\"\",\"subtitle_typography_font_family\":\"\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"\",\"subtitle_typography_text_transform\":\"\",\"subtitle_typography_font_style\":\"\",\"subtitle_typography_text_decoration\":\"\",\"subtitle_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"subtitle_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_type\":\"solid\",\"divider_title_width\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_title_border_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_color\":\"\",\"divider_title_align\":\"\",\"divider_title_align_widescreen\":\"\",\"divider_title_align_tablet_extra\":\"\",\"divider_title_align_tablet\":\"\",\"divider_title_align_mobile_extra\":\"\",\"divider_title_align_mobile\":\"\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider_title_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color\":\"\",\"description_typography_typography\":\"\",\"description_typography_font_family\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_weight\":\"\",\"description_typography_text_transform\":\"\",\"description_typography_font_style\":\"\",\"description_typography_text_decoration\":\"\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_size\":\"md\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_border_normal_border\":\"\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_color\":\"\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_weight\":\"\",\"button_typography_text_transform\":\"\",\"button_typography_font_style\":\"\",\"button_typography_text_decoration\":\"underline\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"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\":\" \",\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\",\"button_bg_color_hover\":\"\",\"button_border_color_hover\":\"\",\"button_hover_animation\":\"\",\"button_box_shadow_hover_box_shadow_type\":\"\",\"button_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_hover_box_shadow_position\":\" \",\"select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"arrows_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_bg_color_normal\":\"\",\"arrows_color_normal\":\"\",\"arrows_border_normal_border\":\"\",\"arrows_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_color\":\"\",\"arrows_border_radius_normal\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_bg_color_hover\":\"\",\"arrows_color_hover\":\"\",\"arrows_border_color_hover\":\"\",\"arrows_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_position\":\"outside\",\"dots_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_color_normal\":\"\",\"active_dot_color_normal\":\"\",\"dots_border_normal_border\":\"\",\"dots_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_color\":\"\",\"dots_border_radius_normal\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_color_hover\":\"\",\"dots_border_color_hover\":\"\",\"fraction_text_color\":\"\",\"fraction_typography_typography\":\"\",\"fraction_typography_font_family\":\"\",\"fraction_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_weight\":\"\",\"fraction_typography_text_transform\":\"\",\"fraction_typography_font_style\":\"\",\"fraction_typography_text_decoration\":\"\",\"fraction_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"442479f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\",\"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\",\"button_type\":\"\",\"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},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"fadeInUp\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"slow\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3551, 388, '_wp_page_template', 'elementor_header_footer'),
(3553, 388, '_elementor_edit_mode', 'builder'),
(3554, 388, '_elementor_template_type', 'wp-page'),
(3555, 388, '_elementor_version', '3.35.3'),
(3556, 388, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3557, 388, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13: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-08 to 2026-02-14\",\"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\",\"align\":\"center\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"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_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_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-08 to 2026-02-14\",\"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__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"columns_widescreen\":\"\",\"columns_tablet\":\"2\",\"columns_mobile\":\"1\",\"thumbnail_size\":\"full\",\"thumbnail_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"divider_title_switch\":\"\",\"sub_title_html_tag\":\"h5\",\"carousel_effect\":\"slide\",\"items\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"items_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_tablet\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"items_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slider_speed\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"autoplay\":\"yes\",\"pause_on_hover\":\"\",\"pause_on_interaction\":\"\",\"autoplay_speed\":{\"unit\":\"px\",\"size\":3000,\"sizes\":[]},\"infinite_loop\":\"yes\",\"centered_slides\":\"\",\"grab_cursor\":\"\",\"arrows\":\"yes\",\"dots\":\"yes\",\"pagination_type\":\"bullets\",\"direction\":\"left\",\"align\":\"center\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"columns_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rows_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_color\":\"#FFFFFF\",\"info_box_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"info_box_background_color_stop_widescreen\":{\"unit\":\"%\"},\"info_box_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"info_box_background_color_stop_tablet\":{\"unit\":\"%\"},\"info_box_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"info_box_background_color_stop_mobile\":{\"unit\":\"%\"},\"info_box_background_color_b\":\"#f2295b\",\"info_box_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"info_box_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"info_box_background_gradient_type\":\"linear\",\"info_box_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"info_box_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"info_box_background_gradient_position\":\"center center\",\"info_box_background_gradient_position_widescreen\":\"\",\"info_box_background_gradient_position_tablet_extra\":\"\",\"info_box_background_gradient_position_tablet\":\"\",\"info_box_background_gradient_position_mobile_extra\":\"\",\"info_box_background_gradient_position_mobile\":\"\",\"info_box_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_position\":\"\",\"info_box_background_position_widescreen\":\"\",\"info_box_background_position_tablet_extra\":\"\",\"info_box_background_position_tablet\":\"\",\"info_box_background_position_mobile_extra\":\"\",\"info_box_background_position_mobile\":\"\",\"info_box_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_attachment\":\"\",\"info_box_background_repeat\":\"\",\"info_box_background_repeat_widescreen\":\"\",\"info_box_background_repeat_tablet_extra\":\"\",\"info_box_background_repeat_tablet\":\"\",\"info_box_background_repeat_mobile_extra\":\"\",\"info_box_background_repeat_mobile\":\"\",\"info_box_background_size\":\"\",\"info_box_background_size_widescreen\":\"\",\"info_box_background_size_tablet_extra\":\"\",\"info_box_background_size_tablet\":\"\",\"info_box_background_size_mobile_extra\":\"\",\"info_box_background_size_mobile\":\"\",\"info_box_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"info_box_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_video_link\":\"\",\"info_box_background_video_start\":\"\",\"info_box_background_video_end\":\"\",\"info_box_background_play_once\":\"\",\"info_box_background_play_on_mobile\":\"\",\"info_box_background_privacy_mode\":\"\",\"info_box_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_slideshow_gallery\":[],\"info_box_background_slideshow_loop\":\"yes\",\"info_box_background_slideshow_slide_duration\":5000,\"info_box_background_slideshow_slide_transition\":\"fade\",\"info_box_background_slideshow_transition_duration\":500,\"info_box_background_slideshow_background_size\":\"\",\"info_box_background_slideshow_background_size_widescreen\":\"\",\"info_box_background_slideshow_background_size_tablet_extra\":\"\",\"info_box_background_slideshow_background_size_tablet\":\"\",\"info_box_background_slideshow_background_size_mobile_extra\":\"\",\"info_box_background_slideshow_background_size_mobile\":\"\",\"info_box_background_slideshow_background_position\":\"\",\"info_box_background_slideshow_background_position_widescreen\":\"\",\"info_box_background_slideshow_background_position_tablet_extra\":\"\",\"info_box_background_slideshow_background_position_tablet\":\"\",\"info_box_background_slideshow_background_position_mobile_extra\":\"\",\"info_box_background_slideshow_background_position_mobile\":\"\",\"info_box_background_slideshow_lazyload\":\"\",\"info_box_background_slideshow_ken_burns\":\"\",\"info_box_background_slideshow_ken_burns_zoom_direction\":\"in\",\"info_box_border_border\":\"\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_color\":\"\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"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\":[]},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"icon_border_border\":\"\",\"icon_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_color\":\"\",\"icon_rotation\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover\":\"\",\"icon_bg_color_hover\":\"\",\"icon_border_color_hover\":\"\",\"icon_rotation_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_animation\":\"\",\"icon_img_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_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\":[]},\"title_color\":\"\",\"title_typography_font_family\":\"\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_text_transform\":\"\",\"title_typography_font_style\":\"\",\"title_typography_text_decoration\":\"\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color\":\"\",\"subtitle_typography_typography\":\"\",\"subtitle_typography_font_family\":\"\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"\",\"subtitle_typography_text_transform\":\"\",\"subtitle_typography_font_style\":\"\",\"subtitle_typography_text_decoration\":\"\",\"subtitle_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"subtitle_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_type\":\"solid\",\"divider_title_width\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_title_border_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_color\":\"\",\"divider_title_align\":\"\",\"divider_title_align_widescreen\":\"\",\"divider_title_align_tablet_extra\":\"\",\"divider_title_align_tablet\":\"\",\"divider_title_align_mobile_extra\":\"\",\"divider_title_align_mobile\":\"\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider_title_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color\":\"\",\"description_typography_typography\":\"\",\"description_typography_font_family\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_weight\":\"\",\"description_typography_text_transform\":\"\",\"description_typography_font_style\":\"\",\"description_typography_text_decoration\":\"\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_size\":\"md\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_border_normal_border\":\"\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_color\":\"\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_weight\":\"\",\"button_typography_text_transform\":\"\",\"button_typography_font_style\":\"\",\"button_typography_text_decoration\":\"underline\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"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\":\" \",\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\",\"button_bg_color_hover\":\"\",\"button_border_color_hover\":\"\",\"button_hover_animation\":\"\",\"button_box_shadow_hover_box_shadow_type\":\"\",\"button_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_hover_box_shadow_position\":\" \",\"select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"arrows_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_bg_color_normal\":\"\",\"arrows_color_normal\":\"\",\"arrows_border_normal_border\":\"\",\"arrows_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_color\":\"\",\"arrows_border_radius_normal\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_bg_color_hover\":\"\",\"arrows_color_hover\":\"\",\"arrows_border_color_hover\":\"\",\"arrows_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_position\":\"outside\",\"dots_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_color_normal\":\"\",\"active_dot_color_normal\":\"\",\"dots_border_normal_border\":\"\",\"dots_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_color\":\"\",\"dots_border_radius_normal\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_color_hover\":\"\",\"dots_border_color_hover\":\"\",\"fraction_text_color\":\"\",\"fraction_typography_typography\":\"\",\"fraction_typography_font_family\":\"\",\"fraction_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_weight\":\"\",\"fraction_typography_text_transform\":\"\",\"fraction_typography_font_style\":\"\",\"fraction_typography_text_decoration\":\"\",\"fraction_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"442479f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\",\"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\",\"button_type\":\"\",\"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},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"fadeInUp\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"slow\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3604, 394, '_wp_page_template', 'elementor_header_footer'),
(3588, 392, '_wp_page_template', 'elementor_header_footer'),
(3590, 392, '_elementor_edit_mode', 'builder'),
(3591, 392, '_elementor_template_type', 'wp-page'),
(3592, 392, '_elementor_version', '3.35.3'),
(3593, 392, '_elementor_pro_version', '3.25.4'),
(3594, 392, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3629, 397, '_wp_page_template', 'elementor_header_footer'),
(3631, 397, '_elementor_edit_mode', 'builder'),
(3632, 397, '_elementor_template_type', 'wp-page'),
(3633, 397, '_elementor_version', '3.35.3'),
(3634, 397, '_elementor_pro_version', '3.25.4'),
(3635, 397, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3606, 394, '_elementor_edit_mode', 'builder'),
(3607, 394, '_elementor_template_type', 'wp-page'),
(3608, 394, '_elementor_version', '3.35.3'),
(3609, 394, '_elementor_pro_version', '3.25.4'),
(3610, 394, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3595, 392, '_elementor_page_settings', 'a:0:{}'),
(3596, 393, '_wp_page_template', 'elementor_header_footer'),
(3598, 393, '_elementor_edit_mode', 'builder'),
(3599, 393, '_elementor_template_type', 'wp-page'),
(3600, 393, '_elementor_version', '3.35.3'),
(3601, 393, '_elementor_pro_version', '3.25.4'),
(3602, 393, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3603, 393, '_elementor_page_settings', 'a:0:{}'),
(3613, 395, '_wp_page_template', 'elementor_header_footer'),
(3615, 395, '_elementor_edit_mode', 'builder'),
(3616, 395, '_elementor_template_type', 'wp-page'),
(3617, 395, '_elementor_version', '3.35.3'),
(3618, 395, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3619, 395, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3620, 395, '_elementor_page_settings', 'a:0:{}'),
(3621, 396, '_wp_page_template', 'elementor_header_footer'),
(3623, 396, '_elementor_edit_mode', 'builder'),
(3624, 396, '_elementor_template_type', 'wp-page'),
(3625, 396, '_elementor_version', '3.35.3'),
(3626, 396, '_elementor_pro_version', '3.25.4'),
(3627, 396, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3628, 396, '_elementor_page_settings', 'a:0:{}'),
(3647, 399, '_wp_page_template', 'elementor_header_footer'),
(3649, 399, '_elementor_edit_mode', 'builder'),
(3650, 399, '_elementor_template_type', 'wp-page'),
(3651, 399, '_elementor_version', '3.35.3'),
(3652, 399, '_elementor_pro_version', '3.25.4'),
(3653, 399, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3709, 409, '_wp_page_template', 'elementor_header_footer'),
(3773, 415, '_wp_page_template', 'elementor_header_footer'),
(3663, 401, '_wp_page_template', 'elementor_header_footer'),
(3665, 401, '_elementor_edit_mode', 'builder'),
(3666, 401, '_elementor_template_type', 'wp-page'),
(3667, 401, '_elementor_version', '3.35.3'),
(3668, 401, '_elementor_pro_version', '3.25.4'),
(3669, 401, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3654, 399, '_elementor_page_settings', 'a:0:{}'),
(3655, 400, '_wp_page_template', 'elementor_header_footer'),
(3657, 400, '_elementor_edit_mode', 'builder'),
(3658, 400, '_elementor_template_type', 'wp-page'),
(3659, 400, '_elementor_version', '3.35.3'),
(3660, 400, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3661, 400, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3662, 400, '_elementor_page_settings', 'a:0:{}'),
(3689, 407, '_wp_page_template', 'elementor_header_footer'),
(3691, 407, '_elementor_edit_mode', 'builder'),
(3692, 407, '_elementor_template_type', 'wp-page'),
(3693, 407, '_elementor_version', '3.35.3'),
(3694, 407, '_elementor_pro_version', '3.25.4'),
(3695, 407, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3790, 418, '_wp_page_template', 'elementor_header_footer'),
(3784, 416, '_wp_attached_file', '2026/02/love_14309274.svg'),
(3785, 416, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1319;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3753, 413, '_wp_page_template', 'elementor_header_footer'),
(3755, 413, '_elementor_edit_mode', 'builder'),
(3756, 413, '_elementor_template_type', 'wp-page'),
(3757, 413, '_elementor_version', '3.35.3'),
(3758, 413, '_elementor_pro_version', '3.25.4'),
(3759, 413, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/romantic-relationship_12471512-1.svg\",\"id\":402},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/bucket_4254709.svg\",\"id\":405},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3787, 417, '_wp_attached_file', '2026/02/tidy_17275573.svg'),
(3788, 417, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4154;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5384, 217, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>'),
(5385, 191, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>'),
(3674, 402, '_wp_attached_file', '2026/02/romantic-relationship_12471512-1.svg'),
(3675, 402, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3991;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(5371, 72, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5372, 70, '_elementor_element_cache', '{\"timeout\":1773546266,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-8ccb4b0 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"8ccb4b0\\\" 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-520d15d e-con-full e-flex e-con e-child\\\" data-id=\\\"520d15d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c3bd370 elementor-align-start elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"c3bd370\\\" 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=\\\"mailto:info@avalumcare.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 xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\\\"><\\/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\\\">info@avalumcare.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>\\n\\t\\t<div class=\\\"elementor-element elementor-element-eb17524 e-con-full e-flex e-con e-child\\\" data-id=\\\"eb17524\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-602e67a elementor-align-end elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"602e67a\\\" 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=\\\"tel:3106945001\\\">\\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 xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\\\"><\\/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\\\">(310) 694-5001<\\/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<div class=\\\"elementor-element elementor-element-d488cd5 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"d488cd5\\\" 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-479a702 e-con-full e-flex e-con e-child\\\" data-id=\\\"479a702\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1e84985 elementor-widget elementor-widget-image\\\" data-id=\\\"1e84985\\\" 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\\t<a href=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"331\\\" height=\\\"363\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\\\" class=\\\"attachment-full size-full wp-image-78\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png 331w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7-274x300.png 274w\\\" sizes=\\\"(max-width: 331px) 100vw, 331px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\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-9c0b942 e-con-full e-flex e-con e-child\\\" data-id=\\\"9c0b942\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6IjU2YzVjNGQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJtZW51X3R5cGUiOiJvZmYtY2FudmFzIiwidG9nZ2xlX2xhYmVsIjoiTWVudSIsInRvZ2dsZV9hbGlnbiI6InJpZ2h0IiwiY29sb3JfbWVudV9pdGVtIjoiI0JEQkRCRCIsImNvbG9yX21lbnVfaXRlbV9ob3ZlciI6IiNGRkZGRkYiLCJwb2ludGVyX2NvbG9yX21lbnVfaXRlbV9ob3ZlciI6IiM4Y2NhMWYiLCJwb2ludGVyX2NvbG9yX21lbnVfaXRlbV9hY3RpdmUiOiIjOGNjYTFmIiwicGFkZGluZ19ob3Jpem9udGFsX21lbnVfaXRlbSI6eyJ1bml0IjoicHgiLCJzaXplIjowLCJzaXplcyI6W119LCJwYWRkaW5nX3ZlcnRpY2FsX21lbnVfaXRlbSI6eyJ1bml0IjoicHgiLCJzaXplIjowLCJzaXplcyI6W119LCJtZW51X3NwYWNlX2JldHdlZW4iOnsidW5pdCI6InB4Iiwic2l6ZSI6NDEsInNpemVzIjpbXX0sInBvaW50ZXJfd2lkdGgiOnsidW5pdCI6InB4Iiwic2l6ZSI6MSwic2l6ZXMiOltdfSwibWVudV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJtZW51X3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE5LCJzaXplcyI6W119LCJtZW51X3R5cG9ncmFwaHlfZm9udF93ZWlnaHQiOiI2MDAiLCJtZW51X3R5cG9ncmFwaHlfdGV4dF90cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJfZmxleF9hbGlnbl9zZWxmIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJjZDY5MzU0In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJjb2xvcl9tZW51X2l0ZW0iOiIiLCJjb2xvcl9tZW51X2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwicG9pbnRlcl9jb2xvcl9tZW51X2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJwb2ludGVyX2NvbG9yX21lbnVfaXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwidG9nZ2xlX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm92ZXJsYXlfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiY2xvc2VfaWNvbl9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJtb2JpbGVfbGlua19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjIiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJtb2JpbGVfbGlua19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJtb2JpbGVfc3ViX2xpbmtfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwibW9iaWxlX3N1Yl9saW5rX2JnX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsIm1vYmlsZV9zdWJfbGlua19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiY29sb3JfZHJvcGRvd25faXRlbSI6IiIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiZHJvcGRvd25fZGl2aWRlcl9jb2xvciI6IiJ9LCJjb2xvcl9tZW51X2l0ZW1fYWN0aXZlIjoiI0ZGRkZGRiIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbSI6IiNGRkZGRkYiLCJ0b2dnbGVfY29sb3IiOiIjRkZGRkZGIiwib3ZlcmxheV9iZ19jb2xvciI6IiNGRkZGRkYiLCJtb2JpbGVfbGlua19jb2xvciI6IiMzMzMzNGIiLCJtb2JpbGVfc3ViX2xpbmtfY29sb3IiOiIjMzMzMzRiIiwibW9iaWxlX2xpbmtfaG92ZXIiOiIjRkZGRkZGIiwibW9iaWxlX2xpbmtfYmdfaG92ZXIiOiIjOGNjYTFmIiwibW9iaWxlX3N1Yl9saW5rX2JnX2hvdmVyIjoiIzhjY2ExZiIsIm1vYmlsZV9zdWJfbGlua19ob3ZlciI6IiNGRkZGRkYiLCJjbG9zZV9pY29uX2NvbG9yIjoiIzhjY2ExZiIsImRyb3Bkb3duX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsImRyb3Bkb3duX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJkcm9wZG93bl90eXBvZ3JhcGh5X3RleHRfdHJhbnNmb3JtIjoiY2FwaXRhbGl6ZSIsImNvbG9yX2Ryb3Bkb3duX2l0ZW1faG92ZXIiOiIjRkZGRkZGIiwiYmFja2dyb3VuZF9jb2xvcl9kcm9wZG93bl9pdGVtX2hvdmVyIjoiIzhjY2ExZiIsImNvbG9yX2Ryb3Bkb3duX2l0ZW1fYWN0aXZlIjoiI0ZGRkZGRiIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiIjOGNjYTFmIiwiZHJvcGRvd25fZGl2aWRlcl9ib3JkZXIiOiJzb2xpZCIsImRyb3Bkb3duX2RpdmlkZXJfY29sb3IiOiIjRTlFQkVEIiwiZHJvcGRvd25fZGl2aWRlcl93aWR0aCI6eyJ1bml0IjoicHgiLCJzaXplIjoxLCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtYWR2YW5jZWQtbWVudSJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-a69e58a elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-button\\\" data-id=\\\"a69e58a\\\" 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\\/avalumcare\\/contact\\/\\\">\\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\\\">Contact<\\/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=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6Ijk4MTNkMDUiLCJlbFR5cGUiOiJjb250YWluZXIiLCJzZXR0aW5ncyI6eyJmbGV4X2RpcmVjdGlvbiI6ImNvbHVtbiIsIm1pbl9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzcwLCJzaXplcyI6W119LCJmbGV4X2p1c3RpZnlfY29udGVudCI6ImNlbnRlciIsImJhY2tncm91bmRfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJiYWNrZ3JvdW5kX2ltYWdlIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL2F2YWx1bWNhcmVcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAyXC8yMzQzLTEuanBnLmpwZWciLCJpZCI6MzAwLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJiYWNrZ3JvdW5kX3Bvc2l0aW9uIjoiY2VudGVyIGNlbnRlciIsImJhY2tncm91bmRfcmVwZWF0Ijoibm8tcmVwZWF0IiwiYmFja2dyb3VuZF9zaXplIjoiY292ZXIiLCJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvcl9saXN0IjpbeyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNkFEMUYiLCJfaWQiOiI5MTlhZmFlIn0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNzQ5NkEiLCJfaWQiOiIzNmU5ODk4In0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiM1NjVBRDgiLCJfaWQiOiIzMGQ3MjI5In1dLCJiYWNrZ3JvdW5kX292ZXJsYXlfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJiYWNrZ3JvdW5kX292ZXJsYXlfb3BhY2l0eSI6eyJ1bml0IjoicHgiLCJzaXplIjowLjY0LCJzaXplcyI6W119LCJlX2Rpc3BsYXlfY29uZGl0aW9ucyI6WyJbW3tcImNvbmRpdGlvblwiOlwicGFnZV90aXRsZVwiLFwiY29tcGFyYXRvclwiOlwiaXNfbm90XCIsXCJ0aXRsZXNcIjpbe1wiaWRcIjoxMCxcInRleHRcIjpcIkhvbWVcIn1dfV1dIl0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMDVmYjdiZSJ9XSwiX19nbG9iYWxzX18iOnsiYmFja2dyb3VuZF9vdmVybGF5X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiJ9fSwiZWxlbWVudHMiOlt7ImlkIjoiNTE5ZjQ4NyIsImVsVHlwZSI6ImNvbnRhaW5lciIsInNldHRpbmdzIjp7ImNvbnRlbnRfd2lkdGgiOiJmdWxsIiwicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3JfbGlzdCI6W3sicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjZBRDFGIiwiX2lkIjoiN2FhZTI1MyJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjc0OTZBIiwiX2lkIjoiYzgwMWI4YiJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjNTY1QUQ4IiwiX2lkIjoiYTJhMzlhMyJ9XSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI2NTFjZDBlIn1dLCJhbmltYXRpb24iOiJmYWRlSW5VcCIsImFuaW1hdGlvbl9kdXJhdGlvbiI6InNsb3ciLCJtYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiNjciLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9fSwiZWxlbWVudHMiOlt7ImlkIjoiNDhmOWFhZSIsImVsVHlwZSI6IndpZGdldCIsInNldHRpbmdzIjp7Il9fZHluYW1pY19fIjp7InRpdGxlIjoiW2VsZW1lbnRvci10YWcgaWQ9XCJcIiBuYW1lPVwicGFnZS10aXRsZVwiIHNldHRpbmdzPVwiJTdCJTIyaW5jbHVkZV9jb250ZXh0JTIyJTNBJTIyJTIyJTJDJTIyc2hvd19ob21lX3RpdGxlJTIyJTNBJTIyJTIyJTJDJTIyYmVmb3JlJTIyJTNBJTIyJTIyJTJDJTIyYWZ0ZXIlMjIlM0ElMjIlMjIlMkMlMjJmYWxsYmFjayUyMiUzQSUyMiUyMiU3RFwiXSJ9LCJ0aXRsZSI6IkFkZCBZb3VyIEhlYWRpbmcgVGV4dCBIZXJlIiwiaGVhZGVyX3NpemUiOiJoMiIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJiNWI3NTEwIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJ0aXRsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifSwidHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidHlwb2dyYXBoeV90ZXh0X3RyYW5zZm9ybSI6ImNhcGl0YWxpemUifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGhlbWUtcGFnZS10aXRsZSJ9XSwiaXNJbm5lciI6dHJ1ZX1dLCJpc0lubmVyIjpmYWxzZX0=\\\"]\",\"scripts\":[],\"styles\":[]}}'),
(3677, 403, '_wp_attached_file', '2026/02/partners_6708999.svg'),
(3678, 403, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2033;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5364, 6, '_elementor_css', 'a:6:{s:4:\"time\";i:1773312950;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:\"\";}'),
(5365, 322, '_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\";}}'),
(5366, 322, '_elementor_css', 'a:6:{s:4:\"time\";i:1773312951;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:\"\";}'),
(5367, 70, '_elementor_css', 'a:6:{s:4:\"time\";i:1773312951;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:3:\"svg\";i:2;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"48f9aae\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(5368, 293, '_elementor_css', 'a:6:{s:4:\"time\";i:1773312951;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(5369, 70, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:16:\"widget-icon-list\";i:1;s:12:\"widget-image\";i:2;s:14:\"widget-heading\";i:3;s:20:\"e-animation-fadeInUp\";}s:7:\"scripts\";a:3:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:16:\"pp-advanced-menu\";}}'),
(5370, 73, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>'),
(3680, 404, '_wp_attached_file', '2026/02/homeless_7652962.svg'),
(3681, 404, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2868;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5378, 156, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>'),
(5373, 322, '_elementor_element_cache', '{\"timeout\":1773399352,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-f4a8c72 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"f4a8c72\\\" 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-ddd3c86 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"ddd3c86\\\" 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-eba4740 elementor-widget elementor-widget-image\\\" data-id=\\\"eba4740\\\" 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=\\\"665\\\" src=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\\\" class=\\\"attachment-full size-full wp-image-487\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg 1000w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care--300x200.jpg 300w, https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care--768x511.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-b291fb4 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"b291fb4\\\" 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-b005b43 elementor-widget elementor-widget-heading\\\" data-id=\\\"b005b43\\\" 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\\\">Meal preparation<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"9003e6cc8a974d8235f315a7a56b067f\\\" data=\\\"eyJpZCI6ImQzZTI0YTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5Qcm9wZXIgbnV0cml0aW9uIHBsYXlzIGEgdml0YWwgcm9sZSBpbiBtYWludGFpbmluZyBoZWFsdGgsIHJlY292ZXJ5LCBhbmQgb3ZlcmFsbCB3ZWxsLWJlaW5nXHUyMDE0ZXNwZWNpYWxseSBmb3IgZWxkZXJseSBpbmRpdmlkdWFscywgcGF0aWVudHMsIGFuZCBwZW9wbGUgd2l0aCBzcGVjaWFsIGRpZXRhcnkgbmVlZHMuIE91ciBIb21lIENhcmUgTWVhbCBQcmVwYXJhdGlvbiBTZXJ2aWNlIGlzIGRlc2lnbmVkIHRvIHByb3ZpZGUgZnJlc2gsIGhlYWx0aHksIGFuZCBwZXJzb25hbGl6ZWQgbWVhbHMgaW4gdGhlIGNvbWZvcnQgb2YgeW91ciBob21lLCBlbnN1cmluZyB5b3VyIGxvdmVkIG9uZXMgcmVjZWl2ZSB0aGUgcmlnaHQgbnV0cml0aW9uIGV2ZXJ5IGRheS48XC9wPjxwPldlIHVuZGVyc3RhbmQgdGhhdCBwcmVwYXJpbmcgYmFsYW5jZWQgbWVhbHMgY2FuIGJlIGNoYWxsZW5naW5nIGZvciBzZW5pb3JzLCByZWNvdmVyaW5nIHBhdGllbnRzLCBvciBidXN5IGZhbWlsaWVzLiBUaGF0IGlzIHdoeSBvdXIgdHJhaW5lZCBjYXJlZ2l2ZXJzIGhhbmRsZSBldmVyeXRoaW5nXHUyMDE0ZnJvbSBwbGFubmluZyBtZW51cyB0byBjb29raW5nIGFuZCBzZXJ2aW5nXHUyMDE0d2hpbGUgbWFpbnRhaW5pbmcgdGhlIGhpZ2hlc3Qgc3RhbmRhcmRzIG9mIGh5Z2llbmUgYW5kIGNhcmUuPFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImMxMDFhY2QiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjYtMDItMTQgMDc6MjYifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(3683, 405, '_wp_attached_file', '2026/02/bucket_4254709.svg'),
(3684, 405, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6402;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3686, 406, '_wp_attached_file', '2026/02/house_9733722.svg'),
(3687, 406, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2361;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3558, 388, '_elementor_page_settings', 'a:0:{}'),
(3560, 389, '_wp_page_template', 'elementor_header_footer'),
(3562, 389, '_elementor_edit_mode', 'builder'),
(3563, 389, '_elementor_template_type', 'wp-page'),
(3564, 389, '_elementor_version', '3.35.3'),
(3565, 389, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3566, 389, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13: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-08 to 2026-02-14\",\"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\",\"align\":\"center\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"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_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_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"icon_type\":\"icon\",\"button_visible\":\"no\",\"select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_position\":\"after\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\",\"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-08 to 2026-02-14\",\"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__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"columns_widescreen\":\"\",\"columns_tablet\":\"2\",\"columns_mobile\":\"1\",\"thumbnail_size\":\"full\",\"thumbnail_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"divider_title_switch\":\"\",\"sub_title_html_tag\":\"h5\",\"carousel_effect\":\"slide\",\"items\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"items_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_tablet\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"items_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"items_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slider_speed\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"autoplay\":\"yes\",\"pause_on_hover\":\"\",\"pause_on_interaction\":\"\",\"autoplay_speed\":{\"unit\":\"px\",\"size\":3000,\"sizes\":[]},\"infinite_loop\":\"yes\",\"centered_slides\":\"\",\"grab_cursor\":\"\",\"arrows\":\"yes\",\"dots\":\"yes\",\"pagination_type\":\"bullets\",\"direction\":\"left\",\"align\":\"center\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"columns_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"columns_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rows_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rows_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_color\":\"#FFFFFF\",\"info_box_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"info_box_background_color_stop_widescreen\":{\"unit\":\"%\"},\"info_box_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"info_box_background_color_stop_tablet\":{\"unit\":\"%\"},\"info_box_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"info_box_background_color_stop_mobile\":{\"unit\":\"%\"},\"info_box_background_color_b\":\"#f2295b\",\"info_box_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"info_box_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"info_box_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"info_box_background_gradient_type\":\"linear\",\"info_box_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"info_box_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"info_box_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"info_box_background_gradient_position\":\"center center\",\"info_box_background_gradient_position_widescreen\":\"\",\"info_box_background_gradient_position_tablet_extra\":\"\",\"info_box_background_gradient_position_tablet\":\"\",\"info_box_background_gradient_position_mobile_extra\":\"\",\"info_box_background_gradient_position_mobile\":\"\",\"info_box_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_position\":\"\",\"info_box_background_position_widescreen\":\"\",\"info_box_background_position_tablet_extra\":\"\",\"info_box_background_position_tablet\":\"\",\"info_box_background_position_mobile_extra\":\"\",\"info_box_background_position_mobile\":\"\",\"info_box_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_box_background_attachment\":\"\",\"info_box_background_repeat\":\"\",\"info_box_background_repeat_widescreen\":\"\",\"info_box_background_repeat_tablet_extra\":\"\",\"info_box_background_repeat_tablet\":\"\",\"info_box_background_repeat_mobile_extra\":\"\",\"info_box_background_repeat_mobile\":\"\",\"info_box_background_size\":\"\",\"info_box_background_size_widescreen\":\"\",\"info_box_background_size_tablet_extra\":\"\",\"info_box_background_size_tablet\":\"\",\"info_box_background_size_mobile_extra\":\"\",\"info_box_background_size_mobile\":\"\",\"info_box_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"info_box_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"info_box_background_video_link\":\"\",\"info_box_background_video_start\":\"\",\"info_box_background_video_end\":\"\",\"info_box_background_play_once\":\"\",\"info_box_background_play_on_mobile\":\"\",\"info_box_background_privacy_mode\":\"\",\"info_box_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"info_box_background_slideshow_gallery\":[],\"info_box_background_slideshow_loop\":\"yes\",\"info_box_background_slideshow_slide_duration\":5000,\"info_box_background_slideshow_slide_transition\":\"fade\",\"info_box_background_slideshow_transition_duration\":500,\"info_box_background_slideshow_background_size\":\"\",\"info_box_background_slideshow_background_size_widescreen\":\"\",\"info_box_background_slideshow_background_size_tablet_extra\":\"\",\"info_box_background_slideshow_background_size_tablet\":\"\",\"info_box_background_slideshow_background_size_mobile_extra\":\"\",\"info_box_background_slideshow_background_size_mobile\":\"\",\"info_box_background_slideshow_background_position\":\"\",\"info_box_background_slideshow_background_position_widescreen\":\"\",\"info_box_background_slideshow_background_position_tablet_extra\":\"\",\"info_box_background_slideshow_background_position_tablet\":\"\",\"info_box_background_slideshow_background_position_mobile_extra\":\"\",\"info_box_background_slideshow_background_position_mobile\":\"\",\"info_box_background_slideshow_lazyload\":\"\",\"info_box_background_slideshow_ken_burns\":\"\",\"info_box_background_slideshow_ken_burns_zoom_direction\":\"in\",\"info_box_border_border\":\"\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_border_color\":\"\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"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\":[]},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"icon_border_border\":\"\",\"icon_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_border_color\":\"\",\"icon_rotation\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"icon_color_hover\":\"\",\"icon_bg_color_hover\":\"\",\"icon_border_color_hover\":\"\",\"icon_rotation_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_rotation_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_animation\":\"\",\"icon_img_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_img_width_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\":[]},\"title_color\":\"\",\"title_typography_font_family\":\"\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_text_transform\":\"\",\"title_typography_font_style\":\"\",\"title_typography_text_decoration\":\"\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_color\":\"\",\"subtitle_typography_typography\":\"\",\"subtitle_typography_font_family\":\"\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"\",\"subtitle_typography_text_transform\":\"\",\"subtitle_typography_font_style\":\"\",\"subtitle_typography_text_decoration\":\"\",\"subtitle_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"subtitle_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"subtitle_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_type\":\"solid\",\"divider_title_width\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_title_border_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_color\":\"\",\"divider_title_align\":\"\",\"divider_title_align_widescreen\":\"\",\"divider_title_align_tablet_extra\":\"\",\"divider_title_align_tablet\":\"\",\"divider_title_align_mobile_extra\":\"\",\"divider_title_align_mobile\":\"\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider_title_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"divider_title_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_color\":\"\",\"description_typography_typography\":\"\",\"description_typography_font_family\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_weight\":\"\",\"description_typography_text_transform\":\"\",\"description_typography_font_style\":\"\",\"description_typography_text_decoration\":\"\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"description_margin_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_margin_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_size\":\"md\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_border_normal_border\":\"\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_normal_color\":\"\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_weight\":\"\",\"button_typography_text_transform\":\"\",\"button_typography_font_style\":\"\",\"button_typography_text_decoration\":\"underline\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"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\":\" \",\"button_icon_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_icon_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\",\"button_bg_color_hover\":\"\",\"button_border_color_hover\":\"\",\"button_hover_animation\":\"\",\"button_box_shadow_hover_box_shadow_type\":\"\",\"button_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_hover_box_shadow_position\":\" \",\"select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"arrows_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"arrows_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"left_arrow_position_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"right_arrow_position_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"arrows_bg_color_normal\":\"\",\"arrows_color_normal\":\"\",\"arrows_border_normal_border\":\"\",\"arrows_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_border_normal_color\":\"\",\"arrows_border_radius_normal\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_bg_color_hover\":\"\",\"arrows_color_hover\":\"\",\"arrows_border_color_hover\":\"\",\"arrows_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"arrows_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_position\":\"outside\",\"dots_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"dots_color_normal\":\"\",\"active_dot_color_normal\":\"\",\"dots_border_normal_border\":\"\",\"dots_border_normal_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_border_normal_color\":\"\",\"dots_border_radius_normal\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"dots_color_hover\":\"\",\"dots_border_color_hover\":\"\",\"fraction_text_color\":\"\",\"fraction_typography_typography\":\"\",\"fraction_typography_font_family\":\"\",\"fraction_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_font_weight\":\"\",\"fraction_typography_text_transform\":\"\",\"fraction_typography_font_style\":\"\",\"fraction_typography_text_decoration\":\"\",\"fraction_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"fraction_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"442479f\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\",\"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\",\"button_type\":\"\",\"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},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"fadeInUp\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"slow\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3567, 389, '_elementor_page_settings', 'a:0:{}'),
(3729, 410, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3732, 411, '_wp_page_template', 'default'),
(3733, 411, '_elementor_edit_mode', 'builder'),
(3734, 411, '_elementor_template_type', 'wp-page'),
(3735, 411, '_elementor_version', '3.35.3'),
(3736, 411, '_elementor_pro_version', '3.25.4'),
(3737, 411, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"52764da\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the services <span style=\\\" font-weight:100;\\\"> we offer<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3739, 411, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3742, 412, '_wp_page_template', 'default'),
(3743, 412, '_elementor_edit_mode', 'builder'),
(3744, 412, '_elementor_template_type', 'wp-page'),
(3745, 412, '_elementor_version', '3.35.3'),
(3746, 412, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3747, 412, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3749, 412, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3770, 414, '_elementor_page_settings', 'a:0:{}'),
(3775, 415, '_elementor_edit_mode', 'builder'),
(3776, 415, '_elementor_template_type', 'wp-page'),
(3777, 415, '_elementor_version', '3.35.3'),
(3778, 415, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3779, 415, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/romantic-relationship_12471512-1.svg\",\"id\":402},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/bucket_4254709.svg\",\"id\":405},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3797, 418, '_elementor_page_settings', 'a:0:{}'),
(3798, 419, '_wp_page_template', 'elementor_header_footer'),
(3800, 419, '_elementor_edit_mode', 'builder'),
(3801, 419, '_elementor_template_type', 'wp-page'),
(3802, 419, '_elementor_version', '3.35.3'),
(3803, 419, '_elementor_pro_version', '3.25.4'),
(3804, 419, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/romantic-relationship_12471512-1.svg\",\"id\":402},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/bucket_4254709.svg\",\"id\":405},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3805, 419, '_elementor_page_settings', 'a:0:{}'),
(3808, 420, '_elementor_edit_mode', 'builder'),
(3809, 420, '_elementor_template_type', 'wp-page'),
(3810, 420, '_elementor_version', '3.35.3'),
(3811, 420, '_elementor_pro_version', '3.25.4'),
(3812, 420, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3865, 427, '_wp_page_template', 'elementor_header_footer'),
(3867, 427, '_elementor_edit_mode', 'builder'),
(3868, 427, '_elementor_template_type', 'wp-page'),
(3869, 427, '_elementor_version', '3.35.3'),
(3870, 427, '_elementor_pro_version', '3.25.4'),
(3871, 427, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3822, 421, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3823, 422, '_wp_page_template', 'default'),
(3824, 422, '_elementor_edit_mode', 'builder'),
(3825, 422, '_elementor_template_type', 'wp-page'),
(3826, 422, '_elementor_version', '3.35.3'),
(3827, 422, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3828, 422, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/nutrition-plan_12640011-1.svg\",\"id\":216},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3830, 422, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3831, 423, '_wp_page_template', 'default'),
(3832, 423, '_elementor_edit_mode', 'builder'),
(3833, 423, '_elementor_template_type', 'wp-page'),
(3834, 423, '_elementor_version', '3.35.3'),
(3835, 423, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3836, 423, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3838, 423, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3840, 424, '_wp_page_template', 'default'),
(3841, 424, '_elementor_edit_mode', 'builder'),
(3842, 424, '_elementor_template_type', 'wp-page'),
(3843, 424, '_elementor_version', '3.35.3'),
(3844, 424, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3845, 424, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3847, 424, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3848, 425, '_wp_page_template', 'default'),
(3849, 425, '_elementor_edit_mode', 'builder'),
(3850, 425, '_elementor_template_type', 'wp-page'),
(3851, 425, '_elementor_version', '3.35.3'),
(3852, 425, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3853, 425, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3855, 425, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3856, 426, '_wp_page_template', 'default'),
(3857, 426, '_elementor_edit_mode', 'builder'),
(3858, 426, '_elementor_template_type', 'wp-page'),
(3859, 426, '_elementor_version', '3.35.3'),
(3860, 426, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3861, 426, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3863, 426, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3982, 440, '_wp_page_template', 'default'),
(3983, 440, '_elementor_edit_mode', 'builder'),
(3984, 440, '_elementor_template_type', 'wp-page'),
(3985, 440, '_elementor_version', '3.35.3'),
(3986, 440, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3987, 440, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3872, 427, '_elementor_page_settings', 'a:0:{}'),
(3873, 428, '_wp_page_template', 'elementor_header_footer'),
(3875, 428, '_elementor_edit_mode', 'builder'),
(3876, 428, '_elementor_template_type', 'wp-page'),
(3877, 428, '_elementor_version', '3.35.3'),
(3878, 428, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3879, 428, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3880, 428, '_elementor_page_settings', 'a:0:{}'),
(3881, 429, '_wp_page_template', 'elementor_header_footer'),
(3883, 429, '_elementor_edit_mode', 'builder'),
(3884, 429, '_elementor_template_type', 'wp-page'),
(3885, 429, '_elementor_version', '3.35.3'),
(3886, 429, '_elementor_pro_version', '3.25.4'),
(3887, 429, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3892, 430, '_wp_page_template', 'elementor_header_footer'),
(3894, 430, '_elementor_edit_mode', 'builder'),
(3895, 430, '_elementor_template_type', 'wp-page'),
(3896, 430, '_elementor_version', '3.35.3'),
(3897, 430, '_elementor_pro_version', '3.25.4'),
(3898, 430, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3923, 433, '_wp_page_template', 'elementor_header_footer'),
(3925, 433, '_elementor_edit_mode', 'builder'),
(3926, 433, '_elementor_template_type', 'wp-page'),
(3927, 433, '_elementor_version', '3.35.3'),
(3928, 433, '_elementor_pro_version', '3.25.4'),
(3929, 433, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3930, 433, '_elementor_page_settings', 'a:0:{}'),
(3931, 434, '_wp_page_template', 'elementor_header_footer'),
(3933, 434, '_elementor_edit_mode', 'builder'),
(3934, 434, '_elementor_template_type', 'wp-page'),
(3935, 434, '_elementor_version', '3.35.3'),
(3936, 434, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3937, 434, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3899, 430, '_elementor_page_settings', 'a:0:{}'),
(3902, 431, '_wp_page_template', 'elementor_header_footer'),
(3904, 431, '_elementor_edit_mode', 'builder'),
(3905, 431, '_elementor_template_type', 'wp-page'),
(3906, 431, '_elementor_version', '3.35.3'),
(3907, 431, '_elementor_pro_version', '3.25.4'),
(3908, 431, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3909, 431, '_elementor_page_settings', 'a:0:{}'),
(3912, 432, '_wp_page_template', 'elementor_header_footer'),
(3914, 432, '_elementor_edit_mode', 'builder'),
(3915, 432, '_elementor_template_type', 'wp-page'),
(3916, 432, '_elementor_version', '3.35.3'),
(3917, 432, '_elementor_pro_version', '3.25.4'),
(3918, 432, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3938, 434, '_elementor_page_settings', 'a:0:{}'),
(3939, 435, '_wp_page_template', 'elementor_header_footer'),
(3941, 435, '_elementor_edit_mode', 'builder'),
(3942, 435, '_elementor_template_type', 'wp-page'),
(3943, 435, '_elementor_version', '3.35.3'),
(3944, 435, '_elementor_pro_version', '3.25.4'),
(3945, 435, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3957, 437, '_wp_page_template', 'elementor_header_footer'),
(3959, 437, '_elementor_edit_mode', 'builder'),
(3960, 437, '_elementor_template_type', 'wp-page'),
(3961, 437, '_elementor_version', '3.35.3'),
(3962, 437, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3963, 437, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4005, 442, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4998, 555, '_wp_page_template', 'default'),
(4999, 555, '_elementor_edit_mode', 'builder'),
(5000, 555, '_elementor_template_type', 'wp-page'),
(3998, 442, '_wp_page_template', 'default'),
(3999, 442, '_elementor_edit_mode', 'builder'),
(4000, 442, '_elementor_template_type', 'wp-page'),
(4001, 442, '_elementor_version', '3.35.3'),
(4002, 442, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4003, 442, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3964, 437, '_elementor_page_settings', 'a:0:{}'),
(3965, 438, '_wp_page_template', 'elementor_header_footer'),
(3967, 438, '_elementor_edit_mode', 'builder'),
(3968, 438, '_elementor_template_type', 'wp-page'),
(3969, 438, '_elementor_version', '3.35.3'),
(3970, 438, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3971, 438, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3972, 438, '_elementor_page_settings', 'a:0:{}'),
(3973, 439, '_wp_page_template', 'elementor_header_footer'),
(3975, 439, '_elementor_edit_mode', 'builder'),
(3976, 439, '_elementor_template_type', 'wp-page'),
(3977, 439, '_elementor_version', '3.35.3'),
(3978, 439, '_elementor_pro_version', '3.25.4'),
(3979, 439, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4082, 452, '_wp_page_template', 'elementor_header_footer'),
(4007, 443, '_wp_page_template', 'elementor_header_footer'),
(4009, 443, '_elementor_edit_mode', 'builder'),
(4010, 443, '_elementor_template_type', 'wp-page'),
(4011, 443, '_elementor_version', '3.35.3'),
(4012, 443, '_elementor_pro_version', '3.25.4'),
(4013, 443, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3989, 440, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3990, 441, '_wp_page_template', 'default'),
(3991, 441, '_elementor_edit_mode', 'builder'),
(3992, 441, '_elementor_template_type', 'wp-page'),
(3993, 441, '_elementor_version', '3.35.3'),
(3994, 441, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3995, 441, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3997, 441, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4032, 446, '_wp_page_template', 'default'),
(4033, 446, '_elementor_edit_mode', 'builder'),
(4034, 446, '_elementor_template_type', 'wp-page'),
(4035, 446, '_elementor_version', '3.35.3'),
(4036, 446, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4037, 446, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4014, 443, '_elementor_page_settings', 'a:0:{}'),
(4015, 444, '_wp_page_template', 'elementor_header_footer'),
(4017, 444, '_elementor_edit_mode', 'builder'),
(4018, 444, '_elementor_template_type', 'wp-page'),
(4019, 444, '_elementor_version', '3.35.3'),
(4020, 444, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4021, 444, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4022, 444, '_elementor_page_settings', 'a:0:{}'),
(4023, 445, '_wp_page_template', 'elementor_header_footer'),
(4025, 445, '_elementor_edit_mode', 'builder'),
(4026, 445, '_elementor_template_type', 'wp-page'),
(4027, 445, '_elementor_version', '3.35.3'),
(4028, 445, '_elementor_pro_version', '3.25.4'),
(4029, 445, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4066, 450, '_wp_page_template', 'elementor_header_footer'),
(4068, 450, '_elementor_edit_mode', 'builder'),
(4069, 450, '_elementor_template_type', 'wp-page'),
(4070, 450, '_elementor_version', '3.35.3'),
(4071, 450, '_elementor_pro_version', '3.25.4'),
(4072, 450, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4039, 446, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4040, 447, '_wp_page_template', 'default'),
(4041, 447, '_elementor_edit_mode', 'builder'),
(4042, 447, '_elementor_template_type', 'wp-page'),
(4043, 447, '_elementor_version', '3.35.3'),
(4044, 447, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4045, 447, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4047, 447, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4048, 448, '_wp_page_template', 'default'),
(4049, 448, '_elementor_edit_mode', 'builder'),
(4050, 448, '_elementor_template_type', 'wp-page'),
(4051, 448, '_elementor_version', '3.35.3'),
(4052, 448, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4053, 448, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as\\u00a0<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4055, 448, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4116, 456, '_wp_page_template', 'default'),
(4117, 456, '_elementor_edit_mode', 'builder'),
(4118, 456, '_elementor_template_type', 'wp-page'),
(4119, 456, '_elementor_version', '3.35.3'),
(4120, 456, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4121, 456, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as\\u00a0<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4093, 453, '_elementor_edit_mode', 'builder'),
(4094, 453, '_elementor_template_type', 'wp-page'),
(4095, 453, '_elementor_version', '3.35.3'),
(4096, 453, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4097, 453, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4084, 452, '_elementor_edit_mode', 'builder'),
(4085, 452, '_elementor_template_type', 'wp-page'),
(4086, 452, '_elementor_version', '3.35.3'),
(4087, 452, '_elementor_pro_version', '3.25.4'),
(4088, 452, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4073, 450, '_elementor_page_settings', 'a:0:{}'),
(4074, 451, '_wp_page_template', 'elementor_header_footer'),
(4076, 451, '_elementor_edit_mode', 'builder'),
(4077, 451, '_elementor_template_type', 'wp-page'),
(4078, 451, '_elementor_version', '3.35.3'),
(4079, 451, '_elementor_pro_version', '3.25.4'),
(4080, 451, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Companion Care\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4081, 451, '_elementor_page_settings', 'a:0:{}'),
(4091, 453, '_wp_page_template', 'elementor_header_footer'),
(4098, 453, '_elementor_page_settings', 'a:0:{}'),
(4099, 454, '_wp_page_template', 'elementor_header_footer'),
(4101, 454, '_elementor_edit_mode', 'builder'),
(4102, 454, '_elementor_template_type', 'wp-page'),
(4103, 454, '_elementor_version', '3.35.3'),
(4104, 454, '_elementor_pro_version', '3.25.4'),
(4105, 454, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4106, 454, '_elementor_page_settings', 'a:0:{}'),
(4107, 455, '_wp_page_template', 'elementor_header_footer'),
(4109, 455, '_elementor_edit_mode', 'builder'),
(4110, 455, '_elementor_template_type', 'wp-page'),
(4111, 455, '_elementor_version', '3.35.3'),
(4112, 455, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4113, 455, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4168, 462, '_wp_page_template', 'elementor_header_footer'),
(4148, 460, '_wp_page_template', 'elementor_header_footer'),
(4150, 460, '_elementor_edit_mode', 'builder'),
(4151, 460, '_elementor_template_type', 'wp-page'),
(4152, 460, '_elementor_version', '3.35.3'),
(4153, 460, '_elementor_pro_version', '3.25.4'),
(4154, 460, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4123, 456, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4124, 457, '_wp_page_template', 'default'),
(4125, 457, '_elementor_edit_mode', 'builder'),
(4126, 457, '_elementor_template_type', 'wp-page'),
(4127, 457, '_elementor_version', '3.35.3'),
(4128, 457, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4129, 457, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as\\u00a0<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4131, 457, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4132, 458, '_wp_page_template', 'default'),
(4133, 458, '_elementor_edit_mode', 'builder'),
(4134, 458, '_elementor_template_type', 'wp-page'),
(4135, 458, '_elementor_version', '3.35.3'),
(4136, 458, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4137, 458, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4139, 458, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4181, 463, '_wp_page_template', 'default'),
(4182, 463, '_elementor_edit_mode', 'builder'),
(4183, 463, '_elementor_template_type', 'wp-page'),
(4184, 463, '_elementor_version', '3.35.3'),
(4185, 463, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4186, 463, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4978, 553, '_wp_page_template', 'default'),
(4979, 553, '_elementor_edit_mode', 'builder'),
(4980, 553, '_elementor_template_type', 'wp-page'),
(4981, 553, '_elementor_version', '3.35.3'),
(4982, 553, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4983, 553, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5016, 556, '_elementor_page_settings', 'a:0:{}'),
(5019, 557, '_wp_page_template', 'elementor_header_footer'),
(5021, 557, '_elementor_edit_mode', 'builder'),
(5022, 557, '_elementor_template_type', 'wp-page'),
(5023, 557, '_elementor_version', '3.35.3'),
(5024, 557, '_elementor_pro_version', '3.25.4'),
(5025, 557, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4b3754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6e5f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(5026, 557, '_elementor_page_settings', 'a:0:{}'),
(4214, 466, '_wp_page_template', 'elementor_header_footer'),
(4216, 466, '_elementor_edit_mode', 'builder'),
(4217, 466, '_elementor_template_type', 'wp-page'),
(4218, 466, '_elementor_version', '3.35.3'),
(4219, 466, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4220, 466, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4145, 459, '_wp_attached_file', '2026/02/smartphone_4446407.svg'),
(4146, 459, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2265;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4155, 460, '_elementor_page_settings', 'a:0:{}'),
(4158, 461, '_wp_page_template', 'elementor_header_footer'),
(4160, 461, '_elementor_edit_mode', 'builder'),
(4161, 461, '_elementor_template_type', 'wp-page'),
(4162, 461, '_elementor_version', '3.35.3'),
(4163, 461, '_elementor_pro_version', '3.25.4'),
(4164, 461, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4165, 461, '_elementor_page_settings', 'a:0:{}'),
(4170, 462, '_elementor_edit_mode', 'builder'),
(4171, 462, '_elementor_template_type', 'wp-page'),
(4172, 462, '_elementor_version', '3.35.3'),
(4173, 462, '_elementor_pro_version', '3.25.4'),
(4174, 462, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4243, 31, '_elementor_page_settings', 'a:0:{}'),
(4244, 31, '_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:3:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i: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:3:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";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:5:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";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:2:{s:10:\"_flex_size\";i:1;s:7:\"padding\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";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:1;s:6:\"layout\";i:1;s:20:\"columns_tablet_extra\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;s:7:\"columns\";i:1;}}s:5:\"style\";a:5:{s:22:\"section_info_box_style\";a:4:{s:30:\"info_box_background_background\";i:1;s:16:\"info_box_padding\";i:1;s:25:\"info_box_background_color\";i:1;s:22:\"info_box_border_radius\";i:1;}s:27:\"section_info_box_icon_style\";a:7:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;s:11:\"icon_margin\";i:1;s:14:\"icon_img_width\";i:1;s:17:\"icon_color_normal\";i:1;s:20:\"icon_bg_color_normal\";i:1;}s:28:\"section_info_box_title_style\";a:4:{s:12:\"title_margin\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:1;}s:29:\"section_info_box_button_style\";a:7:{s:24:\"button_text_color_normal\";i:1;s:22:\"button_bg_color_normal\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:33:\"button_typography_text_decoration\";i:1;s:14:\"button_padding\";i:1;s:23:\"button_text_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4188, 463, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4191, 464, '_wp_page_template', 'default'),
(4192, 464, '_elementor_edit_mode', 'builder'),
(4193, 464, '_elementor_template_type', 'wp-page'),
(4194, 464, '_elementor_version', '3.35.3'),
(4195, 464, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4196, 464, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/love_14309274.svg\",\"id\":416},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4198, 464, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4201, 465, '_wp_page_template', 'default'),
(4202, 465, '_elementor_edit_mode', 'builder'),
(4203, 465, '_elementor_template_type', 'wp-page'),
(4204, 465, '_elementor_version', '3.35.3'),
(4205, 465, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4206, 465, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4208, 465, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5044, 559, '_wp_page_template', 'default'),
(5045, 559, '_elementor_edit_mode', 'builder'),
(5046, 559, '_elementor_template_type', 'wp-page'),
(5047, 559, '_elementor_version', '3.35.3'),
(5048, 559, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5049, 559, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4221, 466, '_elementor_page_settings', 'a:0:{}'),
(4224, 467, '_wp_page_template', 'elementor_header_footer'),
(4226, 467, '_elementor_edit_mode', 'builder'),
(4227, 467, '_elementor_template_type', 'wp-page'),
(4228, 467, '_elementor_version', '3.35.3'),
(4229, 467, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4230, 467, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4231, 467, '_elementor_page_settings', 'a:0:{}'),
(4234, 468, '_wp_page_template', 'elementor_header_footer'),
(4236, 468, '_elementor_edit_mode', 'builder'),
(4237, 468, '_elementor_template_type', 'wp-page'),
(4238, 468, '_elementor_version', '3.35.3'),
(4239, 468, '_elementor_pro_version', '3.25.4'),
(4240, 468, '_elementor_data', '[{\"id\":\"330d891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6be35f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d6d1eec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8bac124\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"c52f559\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}},{\"title\":\"Meal preparation\",\"subtitle\":\"\",\"description\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/question_7002121.svg\",\"id\":189},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/meal-preparation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"edd7b2c\"},{\"title\":\"Companionship\",\"subtitle\":\"\",\"description\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar.However, as you get older you may find<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/partners_6708999.svg\",\"id\":403},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/companionship\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"3fc8460\"},{\"title\":\"Errand service\",\"subtitle\":\"\",\"description\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/homeless_7652962.svg\",\"id\":404},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/errand-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"1547677\"},{\"title\":\"Light housekeeping\",\"subtitle\":\"\",\"description\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/tidy_17275573.svg\",\"id\":417},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/light-housekeeping\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"36dd132\"},{\"title\":\"New boost\",\"subtitle\":\"\",\"description\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/house_9733722.svg\",\"id\":406},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/new-boost\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"},\"_id\":\"8dfc16b\"}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4247, 320, '_elementor_edit_mode', 'builder'),
(4248, 320, '_astra_content_layout_flag', 'disabled'),
(4249, 320, 'ast-title-bar-display', 'disabled'),
(4250, 320, '_elementor_template_type', 'wp-page'),
(4251, 320, '_elementor_version', '3.35.3'),
(4252, 320, '_elementor_pro_version', '3.25.4'),
(4268, 320, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Avalum Care caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Avalum Care caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ea03a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"3613dd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aba9233\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Student-Support-Services.jpeg\",\"id\":482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7403f20\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5663c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hygiene\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abd0db9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33510a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"005f358\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed baths\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Shower and tub assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Stand-by assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38f4967\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Hygiene\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e28e20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Grooming\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Dressing\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Oral care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Bathroom and incontinence assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"dd61b9e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4254, 469, '_wp_page_template', 'elementor_header_footer'),
(4256, 469, '_elementor_edit_mode', 'builder'),
(4257, 469, '_elementor_template_type', 'wp-page'),
(4258, 469, '_elementor_version', '3.35.3'),
(4259, 469, '_elementor_pro_version', '3.25.4'),
(4260, 469, '_elementor_page_settings', 'a:0:{}'),
(4261, 470, '_wp_page_template', 'elementor_header_footer'),
(4263, 470, '_elementor_edit_mode', 'builder'),
(4264, 470, '_elementor_template_type', 'wp-page'),
(4265, 470, '_elementor_version', '3.35.3'),
(4266, 470, '_elementor_pro_version', '3.25.4'),
(4267, 470, '_elementor_page_settings', 'a:0:{}'),
(4269, 471, '_wp_page_template', 'elementor_header_footer'),
(4271, 471, '_elementor_edit_mode', 'builder'),
(4272, 471, '_elementor_template_type', 'wp-page'),
(4273, 471, '_elementor_version', '3.35.3'),
(4274, 471, '_elementor_pro_version', '3.25.4'),
(4275, 471, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(4284, 474, '_wp_page_template', 'elementor_header_footer'),
(4286, 474, '_elementor_edit_mode', 'builder'),
(4287, 474, '_elementor_template_type', 'wp-page'),
(4288, 474, '_elementor_version', '3.35.3'),
(4289, 474, '_elementor_pro_version', '3.25.4'),
(4290, 474, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(4280, 472, '_wp_attached_file', '2026/02/Personal-Care.jpg'),
(4281, 472, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:25:\"2026/02/Personal-Care.jpg\";s:8:\"filesize\";i:87438;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Personal-Care-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Personal-Care-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9099;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Personal-Care-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83283;}}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:{}}}'),
(4282, 473, '_wp_attached_file', '2026/02/Personal-Care-2.jpg'),
(4283, 473, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:27:\"2026/02/Personal-Care-2.jpg\";s:8:\"filesize\";i:85045;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Personal-Care-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Personal-Care-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7948;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Personal-Care-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71413;}}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:{}}}'),
(4291, 474, '_elementor_page_settings', 'a:0:{}'),
(4294, 475, '_wp_page_template', 'elementor_header_footer'),
(4296, 475, '_elementor_edit_mode', 'builder'),
(4297, 475, '_elementor_template_type', 'wp-page'),
(4298, 475, '_elementor_version', '3.35.3'),
(4299, 475, '_elementor_pro_version', '3.25.4'),
(4300, 475, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(4301, 475, '_elementor_page_settings', 'a:0:{}'),
(4304, 476, '_wp_page_template', 'elementor_header_footer'),
(4306, 476, '_elementor_edit_mode', 'builder'),
(4307, 476, '_elementor_template_type', 'wp-page'),
(4308, 476, '_elementor_version', '3.35.3'),
(4309, 476, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4310, 476, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4320, 478, '_wp_page_template', 'elementor_header_footer'),
(4322, 478, '_elementor_edit_mode', 'builder'),
(4323, 478, '_elementor_template_type', 'wp-page'),
(4324, 478, '_elementor_version', '3.35.3'),
(4325, 478, '_elementor_pro_version', '3.25.4'),
(4326, 478, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4370, 483, '_wp_page_template', 'elementor_header_footer'),
(4372, 483, '_elementor_edit_mode', 'builder'),
(4373, 483, '_elementor_template_type', 'wp-page'),
(4374, 483, '_elementor_version', '3.35.3'),
(4375, 483, '_elementor_pro_version', '3.25.4'),
(4376, 483, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Right at Home\\u2019s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4317, 477, '_wp_attached_file', '2026/02/label_3388576.svg'),
(4318, 477, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1197;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5382, 206, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>'),
(4327, 478, '_elementor_page_settings', 'a:0:{}'),
(4330, 479, '_wp_page_template', 'elementor_header_footer'),
(4332, 479, '_elementor_edit_mode', 'builder'),
(4333, 479, '_elementor_template_type', 'wp-page'),
(4334, 479, '_elementor_version', '3.35.3'),
(4335, 479, '_elementor_pro_version', '3.25.4'),
(4336, 479, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4337, 479, '_elementor_page_settings', 'a:0:{}'),
(4340, 480, '_wp_page_template', 'elementor_header_footer'),
(4342, 480, '_elementor_edit_mode', 'builder'),
(4343, 480, '_elementor_template_type', 'wp-page'),
(4344, 480, '_elementor_version', '3.35.3'),
(4345, 480, '_elementor_pro_version', '3.25.4'),
(4346, 480, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Right at Home\\u2019s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5128, 567, '_wp_page_template', 'elementor_header_footer'),
(5108, 565, '_wp_page_template', 'elementor_header_footer'),
(5110, 565, '_elementor_edit_mode', 'builder'),
(5111, 565, '_elementor_template_type', 'wp-page'),
(5112, 565, '_elementor_version', '3.35.3'),
(5113, 565, '_elementor_pro_version', '3.25.4'),
(5114, 565, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Right at Home\\u2019s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ea03a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"3613dd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aba9233\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Student-Support-Services.jpeg\",\"id\":482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7403f20\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5663c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hygiene\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abd0db9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33510a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"005f358\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed baths\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Shower and tub assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Stand-by assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38f4967\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Hygiene\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e28e20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Grooming\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Dressing\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Oral care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Bathroom and incontinence assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"dd61b9e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4368, 482, '_wp_attached_file', '2026/02/Student-Support-Services.jpeg'),
(4390, 485, '_wp_page_template', 'elementor_header_footer'),
(4392, 485, '_elementor_edit_mode', 'builder'),
(4393, 485, '_elementor_template_type', 'wp-page'),
(4394, 485, '_elementor_version', '3.35.3'),
(4395, 485, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4396, 485, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Right at Home\\u2019s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ea03a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"3613dd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aba9233\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Student-Support-Services.jpeg\",\"id\":482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7403f20\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5663c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hygiene\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abd0db9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33510a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"005f358\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed baths\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Shower and tub assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Stand-by assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38f4967\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Hygiene\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e28e20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Grooming\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Dressing\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Oral care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Bathroom and incontinence assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"dd61b9e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4369, 482, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:37:\"2026/02/Student-Support-Services.jpeg\";s:8:\"filesize\";i:98048;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Student-Support-Services-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Student-Support-Services-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Student-Support-Services-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90642;}}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:{}}}'),
(4377, 483, '_elementor_page_settings', 'a:0:{}'),
(4380, 484, '_wp_page_template', 'elementor_header_footer'),
(4382, 484, '_elementor_edit_mode', 'builder'),
(4383, 484, '_elementor_template_type', 'wp-page'),
(4384, 484, '_elementor_version', '3.35.3'),
(4385, 484, '_elementor_pro_version', '3.25.4'),
(4386, 484, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Right at Home\\u2019s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4387, 484, '_elementor_page_settings', 'a:0:{}'),
(5137, 320, '_elementor_page_settings', 'a:0:{}'),
(5138, 320, '_elementor_controls_usage', 'a:5:{s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}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:9;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:9;s:13:\"content_width\";i:6;s:5:\"width\";i:6;s:20:\"flex_justify_content\";i:3;s:8:\"flex_gap\";i:3;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:9;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:18:\"animation_duration\";i:6;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;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:5;}}}}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:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}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:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}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:3;}}}}}'),
(4403, 322, '_elementor_edit_mode', 'builder'),
(4404, 322, '_astra_content_layout_flag', 'disabled'),
(4405, 322, 'ast-title-bar-display', 'disabled'),
(4406, 322, '_elementor_template_type', 'wp-page'),
(4407, 322, '_elementor_version', '3.35.3'),
(4408, 322, '_elementor_pro_version', '3.25.4'),
(4434, 322, '_elementor_data', '[{\"id\":\"f4a8c72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ddd3c86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eba4740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b291fb4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b005b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meal preparation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3e24a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special dietary needs. Our Home Care Meal Preparation Service is designed to provide fresh, healthy, and personalized meals in the comfort of your home, ensuring your loved ones receive the right nutrition every day.<\\/p><p>We understand that preparing balanced meals can be challenging for seniors, recovering patients, or busy families. That is why our trained caregivers handle everything\\u2014from planning menus to cooking and serving\\u2014while maintaining the highest standards of hygiene and care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4441, 490, '_elementor_data', '[{\"id\":\"f4a8c72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ddd3c86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eba4740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b291fb4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b005b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meal preparation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3e24a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.<\\/p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4440, 490, '_elementor_pro_version', '3.25.4'),
(4439, 490, '_elementor_version', '3.35.3'),
(4435, 490, '_wp_page_template', 'elementor_header_footer'),
(4437, 490, '_elementor_edit_mode', 'builder'),
(4438, 490, '_elementor_template_type', 'wp-page'),
(4418, 487, '_wp_attached_file', '2026/02/care-.jpg'),
(4419, 487, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:665;s:4:\"file\";s:17:\"2026/02/care-.jpg\";s:8:\"filesize\";i:63506;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"care--300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"care--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7737;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"care--768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60579;}}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:{}}}'),
(4420, 488, '_wp_page_template', 'elementor_header_footer'),
(4422, 488, '_elementor_edit_mode', 'builder'),
(4423, 488, '_elementor_template_type', 'wp-page'),
(4424, 488, '_elementor_version', '3.35.3'),
(4425, 488, '_elementor_pro_version', '3.25.4'),
(4426, 488, '_elementor_page_settings', 'a:0:{}'),
(4427, 489, '_wp_page_template', 'elementor_header_footer'),
(4429, 489, '_elementor_edit_mode', 'builder'),
(4430, 489, '_elementor_template_type', 'wp-page'),
(4431, 489, '_elementor_version', '3.35.3'),
(4432, 489, '_elementor_pro_version', '3.25.4'),
(4433, 489, '_elementor_page_settings', 'a:0:{}'),
(4481, 495, '_wp_page_template', 'elementor_header_footer'),
(4483, 495, '_elementor_edit_mode', 'builder'),
(4484, 495, '_elementor_template_type', 'wp-page'),
(4485, 495, '_elementor_version', '3.35.3'),
(4486, 495, '_elementor_pro_version', '3.25.4'),
(4487, 495, '_elementor_data', '[{\"id\":\"f4a8c72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ddd3c86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eba4740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b291fb4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b005b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meal preparation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3e24a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.<\\/p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4510, 322, '_elementor_page_settings', 'a:0:{}'),
(4511, 322, '_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:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";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:1;s:8:\"controls\";a:3:{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:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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;}}}}}'),
(4512, 326, '_elementor_edit_mode', 'builder'),
(4513, 326, '_astra_content_layout_flag', 'disabled'),
(4514, 326, 'ast-title-bar-display', 'disabled'),
(4515, 326, '_elementor_template_type', 'wp-page'),
(4516, 326, '_elementor_version', '3.35.3'),
(4517, 326, '_elementor_pro_version', '3.25.4'),
(4543, 326, '_elementor_data', '[{\"id\":\"2daad32\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"8fdb183\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a4c7e1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Transportation.jpeg\",\"id\":499,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c91c387\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1084bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bda4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. Our reliable and comfortable transportation services are designed to ensure you travel safely, on time, and with peace of mind. Whether it\\u2019s a medical visit, shopping trip, or social outing, we are here to support your mobility and everyday needs.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4544, 502, '_wp_page_template', 'elementor_header_footer'),
(4546, 502, '_elementor_edit_mode', 'builder'),
(4547, 502, '_elementor_template_type', 'wp-page'),
(4548, 502, '_elementor_version', '3.35.3'),
(4549, 502, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4550, 502, '_elementor_data', '[{\"id\":\"2daad32\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"8fdb183\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a4c7e1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Transportation.jpeg\",\"id\":499,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c91c387\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1084bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bda4d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. Our reliable and comfortable transportation services are designed to ensure you travel safely, on time, and with peace of mind. Whether it\\u2019s a medical visit, shopping trip, or social outing, we are here to support your mobility and everyday needs.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4446, 324, '_elementor_edit_mode', 'builder'),
(4447, 324, '_astra_content_layout_flag', 'disabled'),
(4448, 324, 'ast-title-bar-display', 'disabled'),
(4449, 324, '_elementor_template_type', 'wp-page'),
(4450, 324, '_elementor_version', '3.35.3'),
(4451, 324, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4469, 324, '_elementor_data', '[{\"id\":\"93517bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"e7bb372\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a06cdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Medication-reminders-2.jpg\",\"id\":491,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\",\"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_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"caption_source\":\"none\",\"caption\":\"\",\"link_to\":\"none\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"open_lightbox\":\"default\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"\",\"object-fit_widescreen\":\"\",\"object-fit_tablet_extra\":\"\",\"object-fit_tablet\":\"\",\"object-fit_mobile_extra\":\"\",\"object-fit_mobile\":\"\",\"object-position\":\"center center\",\"object-position_widescreen\":\"\",\"object-position_tablet_extra\":\"\",\"object-position_tablet\":\"\",\"object-position_mobile_extra\":\"\",\"object-position_mobile\":\"\",\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_css_filter\":\"\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_css_filter\":\"\",\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"image_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"caption_align\":\"\",\"caption_align_widescreen\":\"\",\"caption_align_tablet_extra\":\"\",\"caption_align_tablet\":\"\",\"caption_align_mobile_extra\":\"\",\"caption_align_mobile\":\"\",\"text_color\":\"\",\"caption_background_color\":\"\",\"caption_typography_typography\":\"\",\"caption_typography_font_family\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_weight\":\"\",\"caption_typography_text_transform\":\"\",\"caption_typography_font_style\":\"\",\"caption_typography_text_decoration\":\"\",\"caption_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_text_shadow_text_shadow_type\":\"\",\"caption_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6de98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c064159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication reminders\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\",\"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\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"custom\",\"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\":\"capitalize\",\"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_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655144\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.<\\/p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\",\"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\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"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)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4453, 491, '_wp_attached_file', '2026/02/Medication-reminders-2.jpg'),
(4454, 491, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:34:\"2026/02/Medication-reminders-2.jpg\";s:8:\"filesize\";i:90970;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Medication-reminders-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Medication-reminders-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8059;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Medication-reminders-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76924;}}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:{}}}'),
(4455, 492, '_wp_page_template', 'elementor_header_footer'),
(4457, 492, '_elementor_edit_mode', 'builder'),
(4458, 492, '_elementor_template_type', 'wp-page'),
(4459, 492, '_elementor_version', '3.35.3'),
(4460, 492, '_elementor_pro_version', '3.25.4'),
(4461, 492, '_elementor_page_settings', 'a:0:{}'),
(4462, 493, '_wp_page_template', 'elementor_header_footer'),
(4464, 493, '_elementor_edit_mode', 'builder'),
(4465, 493, '_elementor_template_type', 'wp-page'),
(4466, 493, '_elementor_version', '3.35.3'),
(4467, 493, '_elementor_pro_version', '3.25.4'),
(4468, 493, '_elementor_page_settings', 'a:0:{}'),
(4470, 494, '_wp_page_template', 'elementor_header_footer'),
(4472, 494, '_elementor_edit_mode', 'builder'),
(4473, 494, '_elementor_template_type', 'wp-page'),
(4474, 494, '_elementor_version', '3.35.3'),
(4475, 494, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4476, 494, '_elementor_data', '[{\"id\":\"93517bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"e7bb372\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a06cdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Medication-reminders-2.jpg\",\"id\":491,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\",\"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_custom_dimension\":{\"width\":\"\",\"height\":\"\"},\"caption_source\":\"none\",\"caption\":\"\",\"link_to\":\"none\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"open_lightbox\":\"default\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"\",\"object-fit_widescreen\":\"\",\"object-fit_tablet_extra\":\"\",\"object-fit_tablet\":\"\",\"object-fit_mobile_extra\":\"\",\"object-fit_mobile\":\"\",\"object-position\":\"center center\",\"object-position_widescreen\":\"\",\"object-position_tablet_extra\":\"\",\"object-position_tablet\":\"\",\"object-position_mobile_extra\":\"\",\"object-position_mobile\":\"\",\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_css_filter\":\"\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_css_filter\":\"\",\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"image_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"caption_align\":\"\",\"caption_align_widescreen\":\"\",\"caption_align_tablet_extra\":\"\",\"caption_align_tablet\":\"\",\"caption_align_mobile_extra\":\"\",\"caption_align_mobile\":\"\",\"text_color\":\"\",\"caption_background_color\":\"\",\"caption_typography_typography\":\"\",\"caption_typography_font_family\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_weight\":\"\",\"caption_typography_text_transform\":\"\",\"caption_typography_font_style\":\"\",\"caption_typography_text_decoration\":\"\",\"caption_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_text_shadow_text_shadow_type\":\"\",\"caption_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6de98e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c064159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication reminders\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\",\"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\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"custom\",\"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\":\"capitalize\",\"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_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655144\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.<\\/p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\",\"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\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"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)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_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_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_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\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_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},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4477, 324, '_elementor_page_settings', 'a:0:{}'),
(4478, 324, '_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:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";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:1;s:8:\"controls\";a:3:{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:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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;}}}}}'),
(4488, 495, '_elementor_page_settings', 'a:0:{}'),
(4491, 496, '_wp_page_template', 'elementor_header_footer'),
(4493, 496, '_elementor_edit_mode', 'builder'),
(4494, 496, '_elementor_template_type', 'wp-page'),
(4495, 496, '_elementor_version', '3.35.3'),
(4496, 496, '_elementor_pro_version', '3.25.4'),
(4497, 496, '_elementor_data', '[{\"id\":\"f4a8c72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ddd3c86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eba4740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b291fb4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b005b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meal preparation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3e24a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.<\\/p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4498, 496, '_elementor_page_settings', 'a:0:{}'),
(4501, 497, '_wp_page_template', 'elementor_header_footer'),
(4503, 497, '_elementor_edit_mode', 'builder'),
(4504, 497, '_elementor_template_type', 'wp-page'),
(4505, 497, '_elementor_version', '3.35.3'),
(4506, 497, '_elementor_pro_version', '3.25.4'),
(4507, 497, '_elementor_data', '[{\"id\":\"f4a8c72\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ddd3c86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eba4740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b291fb4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b005b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meal preparation\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3e24a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being\\u2014especially for elderly individuals, patients, and people with special dietary needs. Our Home Care Meal Preparation Service is designed to provide fresh, healthy, and personalized meals in the comfort of your home, ensuring your loved ones receive the right nutrition every day.<\\/p><p>We understand that preparing balanced meals can be challenging for seniors, recovering patients, or busy families. That is why our trained caregivers handle everything\\u2014from planning menus to cooking and serving\\u2014while maintaining the highest standards of hygiene and care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4527, 499, '_wp_attached_file', '2026/02/Transportation.jpeg'),
(4528, 499, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:27:\"2026/02/Transportation.jpeg\";s:8:\"filesize\";i:91860;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Transportation-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Transportation-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8541;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Transportation-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82304;}}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:{}}}'),
(4529, 500, '_wp_page_template', 'elementor_header_footer'),
(4531, 500, '_elementor_edit_mode', 'builder'),
(4532, 500, '_elementor_template_type', 'wp-page'),
(4533, 500, '_elementor_version', '3.35.3'),
(4534, 500, '_elementor_pro_version', '3.25.4'),
(4535, 500, '_elementor_page_settings', 'a:0:{}'),
(4536, 501, '_wp_page_template', 'elementor_header_footer'),
(4538, 501, '_elementor_edit_mode', 'builder'),
(4539, 501, '_elementor_template_type', 'wp-page'),
(4540, 501, '_elementor_version', '3.35.3'),
(4541, 501, '_elementor_pro_version', '3.25.4'),
(4542, 501, '_elementor_page_settings', 'a:0:{}'),
(4551, 326, '_elementor_page_settings', 'a:0:{}'),
(4552, 326, '_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:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";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:1;s:8:\"controls\";a:3:{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:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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;}}}}}'),
(4555, 328, '_elementor_edit_mode', 'builder'),
(4556, 328, '_astra_content_layout_flag', 'disabled'),
(4557, 328, 'ast-title-bar-display', 'disabled'),
(4558, 328, '_elementor_template_type', 'wp-page'),
(4559, 328, '_elementor_version', '3.35.3'),
(4560, 328, '_elementor_pro_version', '3.25.4'),
(4576, 328, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Dementia-Care-Services.jpg\",\"id\":506,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ffcfdc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"d410e8f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"060bf05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/489892.jpg-1.jpeg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"437490d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87676e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for People with Dementia at Home\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eaf976a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b528f26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Honors who the senior was earlier in life\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Builds confidence and enhances physical strength\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Maintains a routine to prevent agitation and other dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Stimulates brain and promotes cognitive engagement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Maintains a safe environment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"},{\"text\":\"Manages changing dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"d990789\"},{\"text\":\"Creates opportunities for social interaction\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"27d7e9b\"},{\"text\":\"Reduces the feelings of loneliness and depression\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"da61e6e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3212001\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"1f1b6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8433c95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care.jpg\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2a5288\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3982deb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Pro Training\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d633bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Coping with a progressive condition requires patience, empathy and love. Our specially trained caregivers on Alzheimer\'s disease and other dementias can help provide just that for your family. Warm, familiar surroundings can play such an important role in managing cognitive diseases and enhancing quality of life.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4562, 503, '_wp_page_template', 'elementor_header_footer'),
(4564, 503, '_elementor_edit_mode', 'builder'),
(4565, 503, '_elementor_template_type', 'wp-page'),
(4566, 503, '_elementor_version', '3.35.3'),
(4567, 503, '_elementor_pro_version', '3.25.4'),
(4568, 503, '_elementor_page_settings', 'a:0:{}'),
(4569, 504, '_wp_page_template', 'elementor_header_footer'),
(4571, 504, '_elementor_edit_mode', 'builder'),
(4572, 504, '_elementor_template_type', 'wp-page'),
(4573, 504, '_elementor_version', '3.35.3'),
(4574, 504, '_elementor_pro_version', '3.25.4'),
(4575, 504, '_elementor_page_settings', 'a:0:{}'),
(4577, 505, '_wp_page_template', 'elementor_header_footer'),
(4579, 505, '_elementor_edit_mode', 'builder'),
(4580, 505, '_elementor_template_type', 'wp-page'),
(4581, 505, '_elementor_version', '3.35.3'),
(4582, 505, '_elementor_pro_version', '3.25.4'),
(4583, 505, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4588, 507, '_wp_page_template', 'elementor_header_footer'),
(4590, 507, '_elementor_edit_mode', 'builder'),
(4591, 507, '_elementor_template_type', 'wp-page'),
(4592, 507, '_elementor_version', '3.35.3'),
(4593, 507, '_elementor_pro_version', '3.25.4'),
(4594, 507, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4586, 506, '_wp_attached_file', '2026/02/Dementia-Care-Services.jpg'),
(4587, 506, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:34:\"2026/02/Dementia-Care-Services.jpg\";s:8:\"filesize\";i:68369;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Dementia-Care-Services-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16397;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Dementia-Care-Services-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Dementia-Care-Services-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66738;}}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:{}}}'),
(4595, 507, '_elementor_page_settings', 'a:0:{}'),
(4596, 508, '_wp_page_template', 'elementor_header_footer'),
(4598, 508, '_elementor_edit_mode', 'builder'),
(4599, 508, '_elementor_template_type', 'wp-page'),
(4600, 508, '_elementor_version', '3.35.3'),
(4601, 508, '_elementor_pro_version', '3.25.4'),
(4602, 508, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4603, 508, '_elementor_page_settings', 'a:0:{}'),
(4604, 509, '_wp_page_template', 'elementor_header_footer'),
(4606, 509, '_elementor_edit_mode', 'builder'),
(4607, 509, '_elementor_template_type', 'wp-page'),
(4608, 509, '_elementor_version', '3.35.3'),
(4609, 509, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4610, 509, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Dementia-Care-Services.jpg\",\"id\":506,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ffcfdc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"d410e8f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"060bf05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"437490d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87676e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for People with Dementia at Home\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eaf976a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b528f26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Honors who the senior was earlier in life\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Builds confidence and enhances physical strength\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Maintains a routine to prevent agitation and other dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Stimulates brain and promotes cognitive engagement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Maintains a safe environment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"},{\"text\":\"Manages changing dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"d990789\"},{\"text\":\"Creates opportunities for social interaction\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"27d7e9b\"},{\"text\":\"Reduces the feelings of loneliness and depression\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"da61e6e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4615, 511, '_wp_page_template', 'elementor_header_footer'),
(4617, 511, '_elementor_edit_mode', 'builder'),
(4618, 511, '_elementor_template_type', 'wp-page'),
(4619, 511, '_elementor_version', '3.35.3'),
(4620, 511, '_elementor_pro_version', '3.25.4'),
(4621, 511, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Dementia-Care-Services.jpg\",\"id\":506,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ffcfdc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"d410e8f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"060bf05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"437490d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87676e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for People with Dementia at Home\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eaf976a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b528f26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Honors who the senior was earlier in life\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Builds confidence and enhances physical strength\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Maintains a routine to prevent agitation and other dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Stimulates brain and promotes cognitive engagement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Maintains a safe environment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"},{\"text\":\"Manages changing dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"d990789\"},{\"text\":\"Creates opportunities for social interaction\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"27d7e9b\"},{\"text\":\"Reduces the feelings of loneliness and depression\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"da61e6e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4613, 510, '_wp_attached_file', '2026/02/489892.jpg-1.jpeg'),
(4614, 510, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/02/489892.jpg-1.jpeg\";s:8:\"filesize\";i:116188;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"489892.jpg-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24710;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"489892.jpg-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8039;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"489892.jpg-1-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110167;}}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:{}}}'),
(4622, 511, '_elementor_page_settings', 'a:0:{}'),
(4623, 512, '_wp_page_template', 'elementor_header_footer'),
(4625, 512, '_elementor_edit_mode', 'builder'),
(4626, 512, '_elementor_template_type', 'wp-page'),
(4627, 512, '_elementor_version', '3.35.3'),
(4628, 512, '_elementor_pro_version', '3.25.4'),
(4629, 512, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Dementia-Care-Services.jpg\",\"id\":506,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ffcfdc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"d410e8f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"060bf05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"437490d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87676e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for People with Dementia at Home\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eaf976a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b528f26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Honors who the senior was earlier in life\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Builds confidence and enhances physical strength\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Maintains a routine to prevent agitation and other dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Stimulates brain and promotes cognitive engagement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Maintains a safe environment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"},{\"text\":\"Manages changing dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"d990789\"},{\"text\":\"Creates opportunities for social interaction\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"27d7e9b\"},{\"text\":\"Reduces the feelings of loneliness and depression\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"da61e6e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4630, 512, '_elementor_page_settings', 'a:0:{}'),
(4631, 513, '_wp_page_template', 'elementor_header_footer'),
(4633, 513, '_elementor_edit_mode', 'builder'),
(4634, 513, '_elementor_template_type', 'wp-page'),
(4635, 513, '_elementor_version', '3.35.3'),
(4636, 513, '_elementor_pro_version', '3.25.4'),
(4637, 513, '_elementor_data', '[{\"id\":\"7fc2fe9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"b65a708\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"48f3cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Dementia-Care-Services.jpg\",\"id\":506,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1e33a5a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"39abf8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dementia Care Services\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfbbf7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.<\\/p><p>Please reach out to your local Home Instead\\u00ae office to review the range of services that may be offered.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ffcfdc9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"d410e8f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"060bf05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/489892.jpg-1.jpeg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"437490d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"87676e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for People with Dementia at Home\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eaf976a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b528f26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Honors who the senior was earlier in life\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Builds confidence and enhances physical strength\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Maintains a routine to prevent agitation and other dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Stimulates brain and promotes cognitive engagement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Maintains a safe environment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"},{\"text\":\"Manages changing dementia-related behaviors\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"d990789\"},{\"text\":\"Creates opportunities for social interaction\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"27d7e9b\"},{\"text\":\"Reduces the feelings of loneliness and depression\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"da61e6e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3212001\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"1f1b6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8433c95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care.jpg\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2a5288\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3982deb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Pro Training\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d633bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Coping with a progressive condition requires patience, empathy and love. Our specially trained caregivers on Alzheimer\'s disease and other dementias can help provide just that for your family. Warm, familiar surroundings can play such an important role in managing cognitive diseases and enhancing quality of life.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4638, 328, '_elementor_page_settings', 'a:0:{}'),
(4639, 328, '_elementor_controls_usage', 'a:5:{s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}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:9;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:9;s:13:\"content_width\";i:6;s:5:\"width\";i:6;s:20:\"flex_justify_content\";i:3;s:8:\"flex_gap\";i:3;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:9;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:18:\"animation_duration\";i:6;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:2;s:25:\"typography_text_transform\";i:2;}}}}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:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}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;}}}}}'),
(4651, 514, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5295, 583, '_elementor_edit_mode', 'builder'),
(5296, 583, '_elementor_template_type', 'header'),
(5297, 583, '_elementor_version', '3.35.3'),
(5298, 583, '_elementor_pro_version', '3.25.4'),
(5299, 583, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5300, 583, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#8cca1f\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#8cca1f\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#E9EBED\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(4658, 330, '_elementor_edit_mode', 'builder'),
(4659, 330, '_astra_content_layout_flag', 'disabled'),
(4660, 330, 'ast-title-bar-display', 'disabled'),
(4661, 330, '_elementor_template_type', 'wp-page'),
(4662, 330, '_elementor_version', '3.35.3'),
(4663, 330, '_elementor_pro_version', '3.25.4'),
(4687, 330, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship.jpeg\",\"id\":519,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Avalum Care caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship-2.jpeg\",\"id\":520,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4694, 518, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4693, 518, '_elementor_pro_version', '3.25.4'),
(4692, 518, '_elementor_version', '3.35.3'),
(4688, 518, '_wp_page_template', 'elementor_header_footer'),
(4690, 518, '_elementor_edit_mode', 'builder'),
(4691, 518, '_elementor_template_type', 'wp-page'),
(4673, 516, '_wp_page_template', 'elementor_header_footer'),
(4675, 516, '_elementor_edit_mode', 'builder'),
(4676, 516, '_elementor_template_type', 'wp-page'),
(4677, 516, '_elementor_version', '3.35.3'),
(4678, 516, '_elementor_pro_version', '3.25.4'),
(4679, 516, '_elementor_page_settings', 'a:0:{}'),
(4680, 517, '_wp_page_template', 'elementor_header_footer'),
(4682, 517, '_elementor_edit_mode', 'builder'),
(4683, 517, '_elementor_template_type', 'wp-page'),
(4684, 517, '_elementor_version', '3.35.3'),
(4685, 517, '_elementor_pro_version', '3.25.4'),
(4686, 517, '_elementor_page_settings', 'a:0:{}'),
(4723, 523, '_wp_page_template', 'elementor_header_footer'),
(4703, 521, '_wp_page_template', 'elementor_header_footer'),
(4705, 521, '_elementor_edit_mode', 'builder'),
(4706, 521, '_elementor_template_type', 'wp-page'),
(4707, 521, '_elementor_version', '3.35.3'),
(4708, 521, '_elementor_pro_version', '3.25.4'),
(4709, 521, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5161, 570, '_wp_page_template', 'elementor_header_footer'),
(5141, 568, '_wp_page_template', 'elementor_header_footer'),
(5143, 568, '_elementor_edit_mode', 'builder'),
(5144, 568, '_elementor_template_type', 'wp-page'),
(5145, 568, '_elementor_version', '3.35.3'),
(5146, 568, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5147, 568, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship.jpeg\",\"id\":519,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship-2.jpeg\",\"id\":520,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5174, 571, '_edit_last', '1'),
(5175, 571, '_edit_lock', '1770798297:1'),
(5176, 571, '_wp_page_template', 'elementor_header_footer'),
(5232, 571, '_elementor_data', '[{\"id\":\"72a2bdda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94dea76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3dfd50\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8536f82\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14c82d2\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}]},\"elements\":[{\"id\":\"350ac063\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":83,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db8b8cd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ecd499\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"163bbf5\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9e246e4\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20fb6a2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3487cdc\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e695d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What does your interview and hiring process look like?\",\"_id\":\"eb9949a\",\"faq_answer\":\"Applicants either call us or apply online. Once reviewed and pre-qualified, they go through our Activated Insights process, which sends a link to schedule an in-person interview. If they meet our hiring needs, they are invited to a two-hour orientation, held in our office every Wednesday from 10:00 a.m. to 12:00 p.m.\"},{\"tab_title\":\"What is the typical timeline from application to hire?\",\"_id\":\"9dafabf\",\"faq_answer\":\"On average, about one week. In some cases, depending on need, the process can be completed in as little as 1\\u20132 days.\"},{\"tab_title\":\"What kind of training do you offer new hires?\",\"_id\":\"3bd9065\",\"faq_answer\":\"During orientation, we provide WellSky personal care training, including how to clock in and out. Caregivers also receive 5 hours of annual Home Care Pulse training. Additionally, specialized dementia and Alzheimer\\u2019s training is provided as needed in classroom settings at our headquarters office.\"},{\"tab_title\":\"Do you have all of the current caregiver benefits listed on your website?\",\"faq_answer\":\"Not all of them. We currently offer health, vision, and dental insurance, ZayZoon (early wage access), and sick pay.\",\"_id\":\"0f32197\"},{\"tab_title\":\"What makes your office the agency of choice for caregivers in your area?\",\"faq_answer\":\"We offer highly competitive pay and benefits compared to other home care agencies in the region, along with consistent work opportunities that set us apart.\",\"_id\":\"d68d36a\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"faq_items_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"faq_items_border_color\":\"#F4F6F9\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_bg_color\":\"#F4F6F9\",\"faq_question_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"answer_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60d1676\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"answer_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(5183, 571, 'ast-featured-img', 'disabled'),
(5179, 571, 'site-sidebar-layout', 'no-sidebar'),
(5180, 571, 'ast-site-content-layout', 'full-width-container'),
(5181, 571, 'site-content-style', 'default'),
(5182, 571, 'site-sidebar-style', 'default'),
(5184, 571, 'astra-migrate-meta-layouts', 'set'),
(5185, 571, 'ast-breadcrumbs-content', 'disabled'),
(5186, 571, 'theme-transparent-header-meta', 'default'),
(5187, 573, '_menu_item_type', 'post_type'),
(5188, 573, '_menu_item_menu_item_parent', '0'),
(5189, 573, '_menu_item_object_id', '571'),
(5190, 573, '_menu_item_object', 'page'),
(5191, 573, '_menu_item_target', ''),
(5192, 573, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(5193, 573, '_menu_item_xfn', ''),
(5194, 573, '_menu_item_url', ''),
(5197, 571, '_elementor_edit_mode', 'builder'),
(5198, 571, '_astra_content_layout_flag', 'disabled'),
(5199, 571, 'ast-title-bar-display', 'disabled'),
(5200, 571, '_elementor_template_type', 'wp-page'),
(5201, 571, '_elementor_version', '3.35.3'),
(5202, 571, '_elementor_pro_version', '3.25.4'),
(5204, 574, '_elementor_edit_mode', 'builder'),
(5205, 574, '_elementor_template_type', 'container'),
(5206, 574, '_elementor_version', '3.35.3'),
(5207, 574, '_elementor_pro_version', '3.25.4'),
(5208, 574, '_elementor_page_settings', 'a:0:{}'),
(5209, 574, '_elementor_data', '[{\"id\":\"40b5fd4c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94dea76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3dfd50\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8536f82\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14c82d2\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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\":\"610f5c3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":83,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db8b8cd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ecd499\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"163bbf5\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9e246e4\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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\",\"animation_duration\":\"slow\",\"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\":\"3de94ab9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3487cdc\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"390001fe\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What type of care do you provide?\",\"_id\":\"eb9949a\",\"faq_answer\":\"<p>We provide non-medical in-home care such as personal care assistance, companionship, meal preparation, light housekeeping, transportation, and medication reminders.<\\/p>\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"Do you provide medical or nursing care?\",\"_id\":\"9dafabf\",\"faq_answer\":\"<p>No. Our services are non-medical. We do not provide nursing care or administer medications.<\\/p>\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"Who can use your services?\",\"_id\":\"3bd9065\",\"faq_answer\":\"<p>Our services are ideal for seniors, individuals recovering from illness or surgery, and anyone who needs help with daily activities at home.<\\/p>\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"Can services be customized?\",\"faq_answer\":\"<p>Yes. We tailor care services to meet each client\\u2019s specific needs and preferences.<\\/p>\",\"_id\":\"0f32197\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"How do I get started?\",\"faq_answer\":\"<p>Simply call or email us to discuss your needs and available care options.<\\/p>\",\"_id\":\"d68d36a\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"faq_items_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"faq_items_border_color\":\"#F4F6F9\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_bg_color\":\"#F4F6F9\",\"faq_question_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"answer_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60d1676\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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__\":{\"question_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"answer_text_color\":\"globals\\/colors?id=astglobalcolor3\"},\"select_toggle_icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"select_toggle_icon_active\":{\"value\":\"fas fa-minus\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(4699, 519, '_wp_attached_file', '2026/02/Companionship.jpeg'),
(4700, 519, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:702;s:4:\"file\";s:26:\"2026/02/Companionship.jpeg\";s:8:\"filesize\";i:425555;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Companionship-300x211.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16136;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Companionship-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7736;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Companionship-768x539.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64010;}}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:{}}}'),
(4701, 520, '_wp_attached_file', '2026/02/Companionship-2.jpeg'),
(4702, 520, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2026/02/Companionship-2.jpeg\";s:8:\"filesize\";i:101538;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Companionship-2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24013;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Companionship-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8316;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Companionship-2-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99722;}}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:{}}}'),
(4710, 521, '_elementor_page_settings', 'a:0:{}'),
(4713, 522, '_wp_page_template', 'elementor_header_footer'),
(4715, 522, '_elementor_edit_mode', 'builder'),
(4716, 522, '_elementor_template_type', 'wp-page'),
(4717, 522, '_elementor_version', '3.35.3'),
(4718, 522, '_elementor_pro_version', '3.25.4'),
(4719, 522, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4720, 522, '_elementor_page_settings', 'a:0:{}'),
(4725, 523, '_elementor_edit_mode', 'builder'),
(4726, 523, '_elementor_template_type', 'wp-page'),
(4727, 523, '_elementor_version', '3.35.3'),
(4728, 523, '_elementor_pro_version', '3.25.4'),
(4729, 523, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship.jpeg\",\"id\":519,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship-2.jpeg\",\"id\":520,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5170, 330, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5171, 330, '_elementor_controls_usage', 'a:5:{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: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:9:\"container\";a:3:{s:5:\"count\";i:6;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:6;s:13:\"content_width\";i:4;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:6;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}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:2:{s:5:\"title\";i:3;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:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;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: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: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;}}}}}'),
(4736, 332, '_elementor_edit_mode', 'builder'),
(4737, 332, '_astra_content_layout_flag', 'disabled'),
(4738, 332, 'ast-title-bar-display', 'disabled'),
(4739, 332, '_elementor_template_type', 'wp-page'),
(4740, 332, '_elementor_version', '3.35.3'),
(4741, 332, '_elementor_pro_version', '3.25.4'),
(4757, 332, '_elementor_data', '[{\"id\":\"ecf16be\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"57296b2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"50cfff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Errand-Service.jpeg\",\"id\":527,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ac3876e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4e10bdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Errand Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f25f1c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.<\\/p><p>We understand that small daily responsibilities\\u2014such as grocery shopping, collecting medicines, or paying bills\\u2014can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4743, 524, '_wp_page_template', 'elementor_header_footer'),
(4745, 524, '_elementor_edit_mode', 'builder'),
(4746, 524, '_elementor_template_type', 'wp-page'),
(4747, 524, '_elementor_version', '3.35.3'),
(4748, 524, '_elementor_pro_version', '3.25.4'),
(4749, 524, '_elementor_page_settings', 'a:0:{}'),
(4750, 525, '_wp_page_template', 'elementor_header_footer'),
(4752, 525, '_elementor_edit_mode', 'builder'),
(4753, 525, '_elementor_template_type', 'wp-page'),
(4754, 525, '_elementor_version', '3.35.3'),
(4755, 525, '_elementor_pro_version', '3.25.4'),
(4756, 525, '_elementor_page_settings', 'a:0:{}'),
(4758, 526, '_wp_page_template', 'elementor_header_footer'),
(4760, 526, '_elementor_edit_mode', 'builder'),
(4761, 526, '_elementor_template_type', 'wp-page'),
(4762, 526, '_elementor_version', '3.35.3'),
(4763, 526, '_elementor_pro_version', '3.25.4'),
(4764, 526, '_elementor_data', '[{\"id\":\"ecf16be\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"57296b2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"50cfff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ac3876e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4e10bdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Errand Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f25f1c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.<\\/p><p>We understand that small daily responsibilities\\u2014such as grocery shopping, collecting medicines, or paying bills\\u2014can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4769, 528, '_wp_page_template', 'elementor_header_footer'),
(4771, 528, '_elementor_edit_mode', 'builder'),
(4772, 528, '_elementor_template_type', 'wp-page'),
(4773, 528, '_elementor_version', '3.35.3'),
(4774, 528, '_elementor_pro_version', '3.25.4'),
(4775, 528, '_elementor_data', '[{\"id\":\"ecf16be\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"57296b2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"50cfff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ac3876e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4e10bdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Errand Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f25f1c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.<\\/p><p>We understand that small daily responsibilities\\u2014such as grocery shopping, collecting medicines, or paying bills\\u2014can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4767, 527, '_wp_attached_file', '2026/02/Errand-Service.jpeg'),
(4768, 527, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:27:\"2026/02/Errand-Service.jpeg\";s:8:\"filesize\";i:65507;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Errand-Service-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Errand-Service-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6948;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Errand-Service-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62100;}}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:{}}}'),
(4776, 528, '_elementor_page_settings', 'a:0:{}'),
(4777, 529, '_wp_page_template', 'elementor_header_footer'),
(4779, 529, '_elementor_edit_mode', 'builder'),
(4780, 529, '_elementor_template_type', 'wp-page'),
(4781, 529, '_elementor_version', '3.35.3'),
(4782, 529, '_elementor_pro_version', '3.25.4'),
(4783, 529, '_elementor_data', '[{\"id\":\"ecf16be\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"57296b2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"50cfff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ac3876e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4e10bdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Errand Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f25f1c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.<\\/p><p>We understand that small daily responsibilities\\u2014such as grocery shopping, collecting medicines, or paying bills\\u2014can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4784, 529, '_elementor_page_settings', 'a:0:{}'),
(4785, 530, '_wp_page_template', 'elementor_header_footer'),
(4787, 530, '_elementor_edit_mode', 'builder'),
(4788, 530, '_elementor_template_type', 'wp-page'),
(4789, 530, '_elementor_version', '3.35.3'),
(4790, 530, '_elementor_pro_version', '3.25.4'),
(4791, 530, '_elementor_data', '[{\"id\":\"ecf16be\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"57296b2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"50cfff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Errand-Service.jpeg\",\"id\":527,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ac3876e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4e10bdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Errand Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f25f1c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.<\\/p><p>We understand that small daily responsibilities\\u2014such as grocery shopping, collecting medicines, or paying bills\\u2014can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4792, 332, '_elementor_page_settings', 'a:0:{}'),
(4793, 332, '_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:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";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:1;s:8:\"controls\";a:3:{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:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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;}}}}}'),
(4796, 334, '_elementor_edit_mode', 'builder'),
(4797, 334, '_astra_content_layout_flag', 'disabled'),
(4798, 334, 'ast-title-bar-display', 'disabled'),
(4799, 334, '_elementor_template_type', 'wp-page'),
(4815, 334, '_elementor_data', '[{\"id\":\"6355cc8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"42158e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"02a116b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Light-Housekeeping-Service.jpeg\",\"id\":535,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b8361c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d1be55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Light Housekeeping Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07ac8d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.<\\/p><p>Our trained caregivers provide gentle household assistance while respecting the client\\u2019s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4814, 334, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4806, 532, '_wp_page_template', 'elementor_header_footer'),
(4808, 532, '_elementor_edit_mode', 'builder'),
(4809, 532, '_elementor_template_type', 'wp-page'),
(4810, 533, '_wp_page_template', 'elementor_header_footer'),
(4812, 533, '_elementor_edit_mode', 'builder'),
(4813, 533, '_elementor_template_type', 'wp-page'),
(4816, 534, '_wp_page_template', 'default'),
(4818, 534, '_elementor_edit_mode', 'builder'),
(4819, 534, '_elementor_template_type', 'wp-page'),
(4820, 534, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4821, 534, '_elementor_data', '[{\"id\":\"6355cc8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"42158e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"02a116b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b8361c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d1be55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Light Housekeeping Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07ac8d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.<\\/p><p>Our trained caregivers provide gentle household assistance while respecting the client\\u2019s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4822, 334, '_elementor_version', '3.35.3'),
(4823, 334, '_elementor_pro_version', '3.25.4'),
(4827, 536, '_wp_page_template', 'default'),
(4829, 536, '_elementor_edit_mode', 'builder'),
(4830, 536, '_elementor_template_type', 'wp-page'),
(4831, 536, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4832, 536, '_elementor_data', '[{\"id\":\"6355cc8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"42158e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"02a116b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b8361c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d1be55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Light Housekeeping Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07ac8d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.<\\/p><p>Our trained caregivers provide gentle household assistance while respecting the client\\u2019s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4825, 535, '_wp_attached_file', '2026/02/Light-Housekeeping-Service.jpeg'),
(4826, 535, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:39:\"2026/02/Light-Housekeeping-Service.jpeg\";s:8:\"filesize\";i:86883;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Light-Housekeeping-Service-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17017;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Light-Housekeeping-Service-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7313;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Light-Housekeeping-Service-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76650;}}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:{}}}'),
(4833, 536, '_elementor_version', '3.35.3'),
(4834, 536, '_elementor_pro_version', '3.25.4'),
(4835, 537, '_wp_page_template', 'default'),
(4837, 537, '_elementor_edit_mode', 'builder'),
(4838, 537, '_elementor_template_type', 'wp-page'),
(4839, 537, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4840, 537, '_elementor_data', '[{\"id\":\"6355cc8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"42158e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"02a116b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/care-.jpg\",\"id\":487,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b8361c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d1be55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Light Housekeeping Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07ac8d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.<\\/p><p>Our trained caregivers provide gentle household assistance while respecting the client\\u2019s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4841, 537, '_elementor_version', '3.35.3'),
(4842, 537, '_elementor_pro_version', '3.25.4'),
(4843, 538, '_wp_page_template', 'default'),
(4845, 538, '_elementor_edit_mode', 'builder'),
(4846, 538, '_elementor_template_type', 'wp-page'),
(4847, 538, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4848, 538, '_elementor_data', '[{\"id\":\"6355cc8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"42158e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"02a116b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Light-Housekeeping-Service.jpeg\",\"id\":535,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b8361c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d1be55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Light Housekeeping Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07ac8d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A clean and organized home is essential for health, safety, and peace of mind\\u2014especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.<\\/p><p>Our trained caregivers provide gentle household assistance while respecting the client\\u2019s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4849, 538, '_elementor_version', '3.35.3'),
(4850, 538, '_elementor_pro_version', '3.25.4'),
(4851, 334, '_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:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";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:1;s:8:\"controls\";a:3:{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:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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;}}}}}'),
(4854, 336, '_elementor_edit_mode', 'builder'),
(4855, 336, '_astra_content_layout_flag', 'disabled'),
(4856, 336, 'ast-title-bar-display', 'disabled'),
(4857, 336, '_elementor_template_type', 'wp-page'),
(4883, 543, '_elementor_data', '[{\"id\":\"7ed37fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"c95d8c5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4f0acfd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/New-Boost-Care-Service.jpeg\",\"id\":540,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"55e143a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a170757\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Boost Care Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf3f3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone who needs additional daily care at home. This service focuses on improving energy, comfort, nutrition, hygiene, and emotional well-being, helping clients feel stronger, safer, and more confident in their everyday life.<\\/p><p>We understand that sometimes regular home care is not enough. Clients may need extra attention, closer monitoring, and more personalized assistance during recovery, weakness, or long-term health conditions. The New Boost Care Service delivers that additional level of compassionate and professional support\\u2014right in the comfort of home.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4882, 543, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4881, 543, '_elementor_template_type', 'wp-page'),
(4880, 543, '_elementor_edit_mode', 'builder'),
(4876, 336, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4877, 336, '_elementor_data', '[{\"id\":\"7ed37fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"c95d8c5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4f0acfd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/New-Boost-Care-Service.jpeg\",\"id\":540,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"55e143a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a170757\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Boost Care Service\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf3f3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone who needs additional daily care at home. This service focuses on improving energy, comfort, nutrition, hygiene, and emotional well-being, helping clients feel stronger, safer, and more confident in their everyday life.<\\/p><p>We understand that sometimes regular home care is not enough. Clients may need extra attention, closer monitoring, and more personalized assistance during recovery, weakness, or long-term health conditions. The New Boost Care Service delivers that additional level of compassionate and professional support\\u2014right in the comfort of home.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4878, 543, '_wp_page_template', 'default'),
(4866, 540, '_wp_attached_file', '2026/02/New-Boost-Care-Service.jpeg'),
(4867, 540, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:35:\"2026/02/New-Boost-Care-Service.jpeg\";s:8:\"filesize\";i:50111;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"New-Boost-Care-Service-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12585;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"New-Boost-Care-Service-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6311;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"New-Boost-Care-Service-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48455;}}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:{}}}'),
(4868, 541, '_wp_page_template', 'elementor_header_footer'),
(4870, 541, '_elementor_edit_mode', 'builder'),
(4871, 541, '_elementor_template_type', 'wp-page'),
(4872, 542, '_wp_page_template', 'elementor_header_footer'),
(4874, 542, '_elementor_edit_mode', 'builder'),
(4875, 542, '_elementor_template_type', 'wp-page'),
(4884, 336, '_elementor_version', '3.35.3'),
(4885, 336, '_elementor_pro_version', '3.25.4'),
(4886, 336, '_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:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";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:1;s:8:\"controls\";a:3:{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:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";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;}}}}}'),
(4887, 33, '_elementor_edit_mode', 'builder'),
(4888, 33, '_astra_content_layout_flag', 'disabled'),
(4889, 33, 'ast-title-bar-display', 'disabled'),
(4890, 33, '_elementor_template_type', 'wp-page'),
(4891, 33, '_elementor_version', '3.35.3'),
(4892, 33, '_elementor_pro_version', '3.25.4'),
(4908, 33, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(4894, 544, '_wp_page_template', 'elementor_header_footer'),
(4896, 544, '_elementor_edit_mode', 'builder'),
(4897, 544, '_elementor_template_type', 'wp-page'),
(4898, 544, '_elementor_version', '3.35.3'),
(4899, 544, '_elementor_pro_version', '3.25.4'),
(4900, 544, '_elementor_page_settings', 'a:0:{}'),
(4901, 545, '_wp_page_template', 'elementor_header_footer'),
(4903, 545, '_elementor_edit_mode', 'builder'),
(4904, 545, '_elementor_template_type', 'wp-page'),
(4905, 545, '_elementor_version', '3.35.3'),
(4906, 545, '_elementor_pro_version', '3.25.4'),
(4907, 545, '_elementor_page_settings', 'a:0:{}'),
(4909, 546, '_wp_page_template', 'elementor_header_footer'),
(4911, 546, '_elementor_edit_mode', 'builder'),
(4912, 546, '_elementor_template_type', 'wp-page'),
(4913, 546, '_elementor_version', '3.35.3'),
(4914, 546, '_elementor_pro_version', '3.25.4'),
(4915, 546, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4b3754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6e5f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4918, 547, '_wp_page_template', 'elementor_header_footer'),
(4920, 547, '_elementor_edit_mode', 'builder'),
(4921, 547, '_elementor_template_type', 'wp-page'),
(4922, 547, '_elementor_version', '3.35.3'),
(4923, 547, '_elementor_pro_version', '3.25.4'),
(4924, 547, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4b3754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6e5f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4925, 547, '_elementor_page_settings', 'a:0:{}'),
(4926, 548, '_wp_page_template', 'elementor_header_footer'),
(4928, 548, '_elementor_edit_mode', 'builder'),
(4929, 548, '_elementor_template_type', 'wp-page'),
(4930, 548, '_elementor_version', '3.35.3'),
(4931, 548, '_elementor_pro_version', '3.25.4'),
(4932, 548, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4b3754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6e5f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4933, 548, '_elementor_page_settings', 'a:0:{}'),
(5029, 558, '_wp_page_template', 'elementor_header_footer'),
(5031, 558, '_elementor_edit_mode', 'builder'),
(5032, 558, '_elementor_template_type', 'wp-page'),
(5033, 558, '_elementor_version', '3.35.3'),
(5034, 558, '_elementor_pro_version', '3.25.4'),
(4934, 549, '_wp_page_template', 'elementor_header_footer'),
(4936, 549, '_elementor_edit_mode', 'builder'),
(4937, 549, '_elementor_template_type', 'wp-page'),
(4938, 549, '_elementor_version', '3.35.3'),
(4939, 549, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4940, 549, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4b3754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6e5f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(5035, 558, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(5009, 556, '_wp_page_template', 'elementor_header_footer'),
(5011, 556, '_elementor_edit_mode', 'builder'),
(5012, 556, '_elementor_template_type', 'wp-page'),
(5013, 556, '_elementor_version', '3.35.3'),
(5014, 556, '_elementor_pro_version', '3.25.4'),
(5015, 556, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4b3754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6e5f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(5095, 564, '_wp_page_template', 'elementor_header_footer'),
(5075, 562, '_wp_page_template', 'elementor_header_footer'),
(5077, 562, '_elementor_edit_mode', 'builder'),
(5078, 562, '_elementor_template_type', 'wp-page'),
(5079, 562, '_elementor_version', '3.35.3'),
(5080, 562, '_elementor_pro_version', '3.25.4'),
(5081, 562, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(4945, 35, '_elementor_edit_mode', 'builder'),
(4946, 35, '_astra_content_layout_flag', 'disabled'),
(4947, 35, 'ast-title-bar-display', 'disabled'),
(4948, 35, '_elementor_template_type', 'wp-page'),
(4949, 35, '_elementor_version', '3.35.3'),
(4950, 35, '_elementor_pro_version', '3.25.4'),
(4966, 35, '_elementor_data', '[{\"id\":\"77e3979\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4f04169\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4995a51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b9e09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca178d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f8d84\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4ba0ae8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3949017\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0e231f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4952, 550, '_wp_page_template', 'elementor_header_footer'),
(4954, 550, '_elementor_edit_mode', 'builder'),
(4955, 550, '_elementor_template_type', 'wp-page'),
(4956, 550, '_elementor_version', '3.35.3'),
(4957, 550, '_elementor_pro_version', '3.25.4'),
(4958, 550, '_elementor_page_settings', 'a:0:{}'),
(4959, 551, '_wp_page_template', 'elementor_header_footer'),
(4961, 551, '_elementor_edit_mode', 'builder'),
(4962, 551, '_elementor_template_type', 'wp-page'),
(4963, 551, '_elementor_version', '3.35.3'),
(4964, 551, '_elementor_pro_version', '3.25.4'),
(4965, 551, '_elementor_page_settings', 'a:0:{}'),
(4967, 552, '_wp_page_template', 'elementor_header_footer'),
(4969, 552, '_elementor_edit_mode', 'builder'),
(4970, 552, '_elementor_template_type', 'wp-page'),
(4971, 552, '_elementor_version', '3.35.3'),
(4972, 552, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4973, 552, '_elementor_data', '[{\"id\":\"77e3979\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4f04169\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4995a51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b9e09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca178d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f8d84\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4ba0ae8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3949017\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0e231f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4974, 35, '_elementor_page_settings', 'a:0:{}'),
(4975, 35, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{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:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";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:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:2;s:4:\"view\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:4:\"link\";i:2;s:10:\"title_size\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:2;s:15:\"position_mobile\";i:2;s:10:\"icon_space\";i:2;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:21:\"section_style_content\";a:2:{s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}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:2:{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:3;}}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:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}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:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:1;s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:14:\"email_reply_to\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_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: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;}}}}}'),
(4985, 553, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(4988, 554, '_wp_page_template', 'default'),
(4989, 554, '_elementor_edit_mode', 'builder'),
(4990, 554, '_elementor_template_type', 'wp-page'),
(4991, 554, '_elementor_version', '3.35.3'),
(4992, 554, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4993, 554, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c248fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Paying for In-Home Care\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"21ebace\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ecb1e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Learn about the many options available to pay for ongoing home care services.\",\"pp_display_conditions\":[{\"_id\":\"6e892cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4995, 554, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5003, 555, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5005, 555, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5244, 579, '_wp_page_template', 'default'),
(5245, 579, '_elementor_edit_mode', 'builder'),
(5246, 579, '_elementor_template_type', 'wp-page'),
(5247, 579, '_elementor_version', '3.35.3'),
(5248, 579, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5249, 579, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5082, 562, '_elementor_page_settings', 'a:0:{}'),
(5085, 563, '_wp_page_template', 'elementor_header_footer'),
(5087, 563, '_elementor_edit_mode', 'builder'),
(5088, 563, '_elementor_template_type', 'wp-page'),
(5089, 563, '_elementor_version', '3.35.3'),
(5090, 563, '_elementor_pro_version', '3.25.4'),
(5091, 563, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(5092, 563, '_elementor_page_settings', 'a:0:{}'),
(5097, 564, '_elementor_edit_mode', 'builder'),
(5098, 564, '_elementor_template_type', 'wp-page'),
(5099, 564, '_elementor_version', '3.35.3'),
(5100, 564, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5101, 564, '_elementor_data', '[{\"id\":\"1298349\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"3df358b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"9a7d6d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09d6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dc3d9ec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5c6e030\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb5ed6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d802dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}]},\"elements\":[{\"id\":\"48f16aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\",\"pp_condition_date_time_before_value\":\"2026-02-14 06:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"71c3041\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c14e3e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"98963c9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edc3bfb\"}],\"pp_display_conditions\":[{\"_id\":\"f1c05f3\"}]},\"elements\":[],\"isInner\":false}]'),
(5104, 33, '_elementor_page_settings', 'a:0:{}'),
(5105, 33, '_elementor_controls_usage', 'a:4:{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:\"container\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:4;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:2;s:8:\"flex_gap\";i:2;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:6;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}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:3:{s:5:\"width\";i:1;s:5:\"space\";i:1;s:19:\"image_border_radius\";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_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),
(5051, 559, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5054, 560, '_wp_page_template', 'default'),
(5055, 560, '_elementor_edit_mode', 'builder'),
(5056, 560, '_elementor_template_type', 'wp-page'),
(5057, 560, '_elementor_version', '3.35.3'),
(5058, 560, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5059, 560, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Right at Home exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5061, 560, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5064, 561, '_wp_page_template', 'default'),
(5065, 561, '_elementor_edit_mode', 'builder'),
(5066, 561, '_elementor_template_type', 'wp-page'),
(5067, 561, '_elementor_version', '3.35.3'),
(5068, 561, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5069, 561, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5071, 561, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5274, 10, '_elementor_controls_usage', 'a:10:{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:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:25:\"typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:4;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:25:\"typography_text_transform\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:16;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:11;s:14:\"flex_direction\";i:12;s:10:\"min_height\";i:1;s:20:\"flex_justify_content\";i:6;s:5:\"width\";i:6;s:8:\"flex_gap\";i:5;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:16;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:6;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:16:\"background_color\";i:3;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:5:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:16;}s:14:\"section_layout\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:8;s:11:\"css_classes\";i:2;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:9;s:18:\"animation_duration\";i:9;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;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:4;s:10:\"image_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:9:{s:5:\"align\";i:2;s:5:\"width\";i:3;s:5:\"space\";i:3;s:19:\"image_border_radius\";i:3;s:6:\"height\";i:2;s:10:\"object-fit\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:27:\"image_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:4;}s:14:\"_section_style\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"counter\";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_counter\";a:2:{s:13:\"ending_number\";i:1;s:5:\"title\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:2:{s:28:\"typography_number_typography\";i:1;s:27:\"typography_number_font_size\";i:1;}s:13:\"section_title\";a:1:{s:27:\"typography_title_typography\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";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: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:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}s:18:\"section_text_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:10:\"text_align\";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:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:13:\"selected_icon\";i:3;s:4:\"view\";i:3;s:5:\"shape\";i:1;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"link\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:3;s:26:\"content_vertical_alignment\";i:3;s:15:\"position_mobile\";i:3;s:10:\"icon_space\";i:2;}s:18:\"section_style_icon\";a:3:{s:13:\"border_radius\";i:1;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;}s:21:\"section_style_content\";a:2:{s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_weight\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";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:1;s:6:\"layout\";i:1;s:20:\"columns_tablet_extra\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;s:7:\"columns\";i:1;}}s:5:\"style\";a:5:{s:22:\"section_info_box_style\";a:4:{s:30:\"info_box_background_background\";i:1;s:16:\"info_box_padding\";i:1;s:25:\"info_box_background_color\";i:1;s:22:\"info_box_border_radius\";i:1;}s:27:\"section_info_box_icon_style\";a:7:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;s:11:\"icon_margin\";i:1;s:14:\"icon_img_width\";i:1;s:17:\"icon_color_normal\";i:1;s:20:\"icon_bg_color_normal\";i:1;}s:28:\"section_info_box_title_style\";a:4:{s:12:\"title_margin\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:1;}s:29:\"section_info_box_button_style\";a:7:{s:24:\"button_text_color_normal\";i:1;s:22:\"button_bg_color_normal\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:33:\"button_typography_text_decoration\";i:1;s:14:\"button_padding\";i:1;s:23:\"button_text_color_hover\";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:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:1;s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:14:\"email_reply_to\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_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: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;}}}}}'),
(5115, 565, '_elementor_page_settings', 'a:0:{}'),
(5118, 566, '_wp_page_template', 'elementor_header_footer'),
(5120, 566, '_elementor_edit_mode', 'builder'),
(5121, 566, '_elementor_template_type', 'wp-page'),
(5122, 566, '_elementor_version', '3.35.3'),
(5123, 566, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5124, 566, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home\\u2019s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Right at Home\\u2019s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ea03a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"3613dd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aba9233\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Student-Support-Services.jpeg\",\"id\":482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7403f20\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5663c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hygiene\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abd0db9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33510a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"005f358\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed baths\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Shower and tub assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Stand-by assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38f4967\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Hygiene\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e28e20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Grooming\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Dressing\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Oral care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Bathroom and incontinence assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"dd61b9e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5125, 566, '_elementor_page_settings', 'a:0:{}'),
(5130, 567, '_elementor_edit_mode', 'builder'),
(5131, 567, '_elementor_template_type', 'wp-page'),
(5132, 567, '_elementor_version', '3.35.3'),
(5133, 567, '_elementor_pro_version', '3.25.4'),
(5134, 567, '_elementor_data', '[{\"id\":\"14d3960\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"9fe4566\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12fac33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1b499a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3f356d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Care\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7353223\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Avalum Care caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5201ede\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"fd1db86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eeb9338\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Care-2.jpg\",\"id\":473,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c6c15c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"31eec92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mobility Assistance\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c48639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mobility isn\\u2019t just a matter of safety\\u2014it\\u2019s a matter of freedom. Avalum Care caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e7de47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Walking assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Paraplegia\\/quadriplegia care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Wheelchair assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"},{\"text\":\"Transferring\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"e72af9a\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ea03a5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\"}]},\"elements\":[{\"id\":\"3613dd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aba9233\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Student-Support-Services.jpeg\",\"id\":482,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7403f20\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5663c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hygiene\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abd0db9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33510a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bathing\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"005f358\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed baths\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Shower and tub assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Stand-by assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38f4967\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Hygiene\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"8482a7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e28e20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Grooming\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Dressing\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Oral care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Bathroom and incontinence assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"dd61b9e\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5148, 568, '_elementor_page_settings', 'a:0:{}'),
(5151, 569, '_wp_page_template', 'elementor_header_footer'),
(5153, 569, '_elementor_edit_mode', 'builder'),
(5154, 569, '_elementor_template_type', 'wp-page'),
(5155, 569, '_elementor_version', '3.35.3'),
(5156, 569, '_elementor_pro_version', '3.25.4'),
(5157, 569, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship.jpeg\",\"id\":519,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship-2.jpeg\",\"id\":520,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5158, 569, '_elementor_page_settings', 'a:0:{}'),
(5163, 570, '_elementor_edit_mode', 'builder'),
(5164, 570, '_elementor_template_type', 'wp-page'),
(5165, 570, '_elementor_version', '3.35.3'),
(5166, 570, '_elementor_pro_version', '3.25.4'),
(5167, 570, '_elementor_data', '[{\"id\":\"b807546\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"a60acac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a0247f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship.jpeg\",\"id\":519,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69789fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8ea31b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Companionship\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7061c05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over the course of your life, you\\u2019ve tailored your home to be exactly how you want it. You\\u2019ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don\\u2019t have to struggle with the day-to-day.<\\/p><p>Avalum Care caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"994e554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":10,\"column\":\"10\",\"row\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#7F9E4908\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7ead258\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7f5fcdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29ba0fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"feba34a\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}]},\"elements\":[{\"id\":\"ce8aaec\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"91cb441\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b2f51f8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1bb627f\"}],\"pp_display_conditions\":[{\"_id\":\"2afe546\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d559af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/Companionship-2.jpeg\",\"id\":520,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6b71bbb\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b398bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3c0ffb5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e6bd796\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cb7da23\"}],\"pp_display_conditions\":[{\"_id\":\"c66c3c4\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1107086\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness\",\"pp_display_conditions\":[{\"_id\":\"8c1b5f1\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bc0fb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:\",\"pp_display_conditions\":[{\"_id\":\"c101acd\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0e6b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness support\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"a8514c3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c45089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Safety supervision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1dcbc97\"},{\"text\":\"Light exercise encouragement\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"1d37141\"},{\"text\":\"Cognitive stimulation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"3c254e2\"},{\"text\":\"Meal planning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/label_3388576.svg\",\"id\":477},\"library\":\"svg\"},\"_id\":\"ad86532\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7aaa000\",\"pp_condition_date_time_before_value\":\"2026-02-14 07:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5210, 575, '_elementor_edit_mode', 'builder'),
(5211, 575, '_elementor_template_type', 'container'),
(5212, 575, '_elementor_version', '3.35.3'),
(5213, 575, '_elementor_pro_version', '3.25.4'),
(5214, 575, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5215, 575, '_elementor_data', '[{\"id\":\"40b5fd4c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94dea76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3dfd50\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8536f82\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14c82d2\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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\":\"610f5c3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":83,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db8b8cd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ecd499\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"163bbf5\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9e246e4\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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\",\"animation_duration\":\"slow\",\"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\":\"3de94ab9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3487cdc\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"390001fe\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What type of care do you provide?\",\"_id\":\"eb9949a\",\"faq_answer\":\"<p>We provide non-medical in-home care such as personal care assistance, companionship, meal preparation, light housekeeping, transportation, and medication reminders.<\\/p>\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"Do you provide medical or nursing care?\",\"_id\":\"9dafabf\",\"faq_answer\":\"<p>No. Our services are non-medical. We do not provide nursing care or administer medications.<\\/p>\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"Who can use your services?\",\"_id\":\"3bd9065\",\"faq_answer\":\"<p>Our services are ideal for seniors, individuals recovering from illness or surgery, and anyone who needs help with daily activities at home.<\\/p>\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"Can services be customized?\",\"faq_answer\":\"<p>Yes. We tailor care services to meet each client\\u2019s specific needs and preferences.<\\/p>\",\"_id\":\"0f32197\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"},{\"tab_title\":\"How do I get started?\",\"faq_answer\":\"<p>Simply call or email us to discuss your needs and available care options.<\\/p>\",\"_id\":\"d68d36a\",\"accordion_tab_default_active\":\"no\",\"question_icon\":{\"value\":\"\",\"library\":\"\"},\"accordion_tab_id\":\"\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"faq_items_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"faq_items_border_color\":\"#F4F6F9\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_bg_color\":\"#F4F6F9\",\"faq_question_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"answer_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60d1676\",\"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-08 to 2026-02-14\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\",\"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__\":{\"question_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"answer_text_color\":\"globals\\/colors?id=astglobalcolor3\"},\"select_toggle_icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"select_toggle_icon_active\":{\"value\":\"fas fa-minus\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_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\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(5217, 574, '_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:6:\"pp-faq\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_faq_items_style\";a:4:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_width\";i:1;s:22:\"faq_items_border_color\";i:1;s:23:\"faq_items_border_radius\";i:1;}s:23:\"section_questions_style\";a:3:{s:17:\"question_bg_color\";i:1;s:26:\"faq_question_border_radius\";i:1;s:16:\"question_padding\";i:1;}s:21:\"section_answers_style\";a:1:{s:14:\"answer_padding\";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:3:{s:13:\"content_width\";i:1;s:5:\"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:3:{s:14:\"section_layout\";a:2:{s:16:\"_flex_align_self\";i:1;s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(5218, 576, '_wp_page_template', 'elementor_header_footer'),
(5220, 576, '_elementor_edit_mode', 'builder'),
(5221, 576, '_elementor_template_type', 'wp-page'),
(5222, 576, '_elementor_version', '3.35.3'),
(5223, 576, '_elementor_pro_version', '3.25.4'),
(5224, 576, '_elementor_page_settings', 'a:0:{}'),
(5225, 577, '_wp_page_template', 'elementor_header_footer'),
(5227, 577, '_elementor_edit_mode', 'builder'),
(5228, 577, '_elementor_template_type', 'wp-page'),
(5229, 577, '_elementor_version', '3.35.3'),
(5230, 577, '_elementor_pro_version', '3.25.4'),
(5231, 577, '_elementor_page_settings', 'a:0:{}'),
(5233, 578, '_wp_page_template', 'elementor_header_footer'),
(5235, 578, '_elementor_edit_mode', 'builder'),
(5236, 578, '_elementor_template_type', 'wp-page'),
(5237, 578, '_elementor_version', '3.35.3'),
(5238, 578, '_elementor_pro_version', '3.25.4'),
(5239, 578, '_elementor_data', '[{\"id\":\"72a2bdda\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"94dea76\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3dfd50\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8536f82\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14c82d2\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}]},\"elements\":[{\"id\":\"350ac063\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":83,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db8b8cd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9ecd499\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"163bbf5\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9e246e4\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20fb6a2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3487cdc\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e695d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"What does your interview and hiring process look like?\",\"_id\":\"eb9949a\",\"faq_answer\":\"Applicants either call us or apply online. Once reviewed and pre-qualified, they go through our Activated Insights process, which sends a link to schedule an in-person interview. If they meet our hiring needs, they are invited to a two-hour orientation, held in our office every Wednesday from 10:00 a.m. to 12:00 p.m.\"},{\"tab_title\":\"What is the typical timeline from application to hire?\",\"_id\":\"9dafabf\",\"faq_answer\":\"On average, about one week. In some cases, depending on need, the process can be completed in as little as 1\\u20132 days.\"},{\"tab_title\":\"What kind of training do you offer new hires?\",\"_id\":\"3bd9065\",\"faq_answer\":\"During orientation, we provide WellSky personal care training, including how to clock in and out. Caregivers also receive 5 hours of annual Home Care Pulse training. Additionally, specialized dementia and Alzheimer\\u2019s training is provided as needed in classroom settings at our headquarters office.\"},{\"tab_title\":\"Do you have all of the current caregiver benefits listed on your website?\",\"faq_answer\":\"Not all of them. We currently offer health, vision, and dental insurance, ZayZoon (early wage access), and sick pay.\",\"_id\":\"0f32197\"},{\"tab_title\":\"What makes your office the agency of choice for caregivers in your area?\",\"faq_answer\":\"We offer highly competitive pay and benefits compared to other home care agencies in the region, along with consistent work opportunities that set us apart.\",\"_id\":\"d68d36a\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"faq_items_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"faq_items_border_color\":\"#F4F6F9\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_bg_color\":\"#F4F6F9\",\"faq_question_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"question_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"answer_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60d1676\",\"pp_condition_date_time_before_value\":\"2026-02-14 08:21\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"answer_text_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(5240, 571, '_elementor_page_settings', 'a:0:{}'),
(5241, 571, '_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:6:\"pp-faq\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_faq_items_style\";a:4:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_width\";i:1;s:22:\"faq_items_border_color\";i:1;s:23:\"faq_items_border_radius\";i:1;}s:23:\"section_questions_style\";a:3:{s:17:\"question_bg_color\";i:1;s:26:\"faq_question_border_radius\";i:1;s:16:\"question_padding\";i:1;}s:21:\"section_answers_style\";a:1:{s:14:\"answer_padding\";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:3:{s:13:\"content_width\";i:1;s:5:\"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:3:{s:14:\"section_layout\";a:2:{s:16:\"_flex_align_self\";i:1;s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(5251, 579, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5254, 580, '_wp_page_template', 'default'),
(5255, 580, '_elementor_edit_mode', 'builder'),
(5256, 580, '_elementor_template_type', 'wp-page'),
(5257, 580, '_elementor_version', '3.35.3'),
(5258, 580, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5259, 580, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5261, 580, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5264, 581, '_wp_page_template', 'default'),
(5265, 581, '_elementor_edit_mode', 'builder'),
(5266, 581, '_elementor_template_type', 'wp-page'),
(5267, 581, '_elementor_version', '3.35.3'),
(5268, 581, '_elementor_pro_version', '3.25.4');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5269, 581, '_elementor_data', '[{\"id\":\"e3a6030\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20335be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7872f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dee322\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bf7113e\"}],\"min_height\":{\"unit\":\"px\",\"size\":820,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":43,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-17.jpeg\"},{\"id\":63,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/banner-18.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000022D4\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"__globals__\":{\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color\":\"\"},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"d6c3182\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2f66f79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"41afc3e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"72c6ff3\"}],\"pp_display_conditions\":[{\"_id\":\"1c26345\"}],\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"67bc908\",\"elType\":\"widget\",\"settings\":{\"title\":\"Avalum <span style=\\\"font-weight:300;\\\">Care<\\/span>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c5cd42b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21ca93e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping older adults live the life they love in the place they call home\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6efc883\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d4a76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8feaffd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8f09733\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2ae514\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"068e887\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1655d54\"}],\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"10\",\"bottom\":\"110\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"about_style\",\"pp_display_conditions\":[{\"_id\":\"def5ad9\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"custom_css\":\"\\/*.about_style .about_box_style{*\\/\\n\\/*    position: relative;*\\/\\n\\/*}*\\/\\n\\/*.about_style .about_box_style::after{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    left: 90px;*\\/\\n\\/*    top: 90px;*\\/\\n\\/*    width: 60%;*\\/\\n\\/*    height: 70%;*\\/\\n\\/*    border: 7px solid #E8C061;*\\/\\n\\/*    background: #E8C061;*\\/\\n\\/*    z-index: -1;*\\/\\n\\/*    border-radius: 21px;*\\/\\n\\/*}*\\/\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"283e3c07\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76253aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f4804af\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"49c0059\"}],\"css_classes\":\"about_box_style\",\"pp_display_conditions\":[{\"_id\":\"f84fce8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3bbaaf1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-4.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":388,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"511e50e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":-17,\"vertical\":-20,\"blur\":1,\"spread\":0,\"color\":\"rgba(255, 0, 0, 0.77)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e74627\",\"elType\":\"widget\",\"settings\":{\"ending_number\":24,\"title\":\"Hour Care\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-144\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"21\",\"bottom\":\"41\",\"left\":\"21\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":36,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"pp_display_conditions\":[{\"_id\":\"9bf4367\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"number_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_number_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"typography_title_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":68,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"19f83a72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/ABOUT-3.jpeg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-68,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"028c855\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"object-fit\":\"cover\",\"_offset_x_end_widescreen\":{\"size\":30,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-68,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"645f5c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45},\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ba01636\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b1ae40\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a29ad6a\"}],\"pp_display_conditions\":[{\"_id\":\"d9bb7c6\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7974e324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"align\":\"left\",\"look\":\"line_text\",\"text\":\"About Us\",\"color\":\"#E2E2E2\",\"weight\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"fa8dc5f\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3679951d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Compassionate Care You <span style=\\\" font-weight:100;\\\">Can Trust<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4a13c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It doesn\\u2019t matter if you\\u2019re here because you\\u2019re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.\",\"pp_display_conditions\":[{\"_id\":\"9fc4ee8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c4db83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/target_18053469.svg\",\"id\":156},\"library\":\"svg\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Our Mission\",\"description_text\":\"Put simply, our mission is to improve the quality of life for those we serve.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5b31a25\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"position_mobile\":\"inline-start\",\"content_vertical_alignment_mobile\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7274faad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"446006e\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/nxtgenmedical\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2637f202\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#FFF0ED\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":167,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"207722f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dc3a8e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fd7c1ee\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3cd9b8\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2b142ad4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e1d3c8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services we  <span style=\\\" font-weight:100;\\\"> provide<\\/span>\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6e040bf\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4f5d980\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"291794f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bf2e2f3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b032c2d\"}],\"pp_display_conditions\":[{\"_id\":\"6a17b10\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"width_widescreen\":{\"unit\":\"px\",\"size\":1221},\"_flex_size\":\"none\",\"_element_width_widescreen\":\"initial\"},\"elements\":[{\"id\":\"21390e32\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Personal care\",\"_id\":\"9b8eb35\",\"subtitle\":\"\",\"description\":\"<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/pediatric_15192770.svg\",\"id\":206},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/personal-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":182,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder.png\"}},{\"title\":\"Medication reminders\",\"subtitle\":\"\",\"description\":\"Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/smartphone_4446407.svg\",\"id\":459},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1701ede\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":184,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-1.png\"}},{\"title\":\"Transportation\",\"subtitle\":\"\",\"description\":\"<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/transportation_18699019.svg\",\"id\":217},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"1f1676d\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":186,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-2.png\"}},{\"title\":\"Dementia care\",\"subtitle\":\"\",\"description\":\"<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/brainstorming_18789094.svg\",\"id\":191},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Learn More\",\"_id\":\"ad40a4a\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/dementia-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"id\":188,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/placeholder-3.png\"}}],\"layout\":\"grid\",\"columns_tablet_extra\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"120\",\"bottom\":\"120\",\"left\":\"120\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a43b3c3\",\"pp_condition_date_time_before_value\":\"2026-02-13 13:39\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"button_bg_color_hover\":\"\"},\"description_margin\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"columns\":\"4\",\"icon_img_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title\":\"Companion Care\",\"description\":\"People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed.\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_color_normal\":\"#FFFFFF\",\"icon_bg_color_normal\":\"#3e7b04\",\"title_typography_text_transform\":\"capitalize\",\"button_text_color_normal\":\"#575959\",\"button_bg_color_normal\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_text_decoration\":\"underline\",\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true},{\"id\":\"8922dae\",\"elType\":\"widget\",\"settings\":{\"text\":\"View all Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"90d0118\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"965cb11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":11,\"column\":\"11\",\"row\":\"11\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fede7cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"521165d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d043b2c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"95fe191\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"931c959\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":47},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2730262\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7eb7cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9ee4ddc\"}],\"pp_display_conditions\":[{\"_id\":\"c6b52fe\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f83b8ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Resources\",\"pp_display_conditions\":[{\"_id\":\"241470c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc13676\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nobody knows exactly what to expect from their aging journey. It\\u2019s easy to feel overwhelmed when you don\\u2019t know what tomorrow will bring. The good news is, you don\\u2019t have to go through it alone.<\\/p><p>Avalum Care exists to be your guide to successful living at home. Whether you\\u2019re looking for tips on aging in place, a guide to transitional care after a hospital stay,<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"60331ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80fd5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"e89fb76\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8be2474\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":53},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54d1171\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0d140a9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"18f2293\"}],\"pp_display_conditions\":[{\"_id\":\"99afbcd\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"694361c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}],\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"413df43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/about-2.jpeg\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8aeaff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"space_mobile_extra\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f0e221d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd0fcc5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b7a1bc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9484b79\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b3688fd\"}]},\"elements\":[{\"id\":\"4fbcab5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/service-area-1.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"36fca7c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"522b0926\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e16a9b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39044eb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0e9e4b7\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41c7bab\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"background_background\":\"classic\",\"background_color\":\"#7F9E4911\"},\"elements\":[{\"id\":\"4689b499\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"20bad71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c046fc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a94e4fe\"}],\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"12\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14cd266\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"25b10d1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"df39741\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a19904b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question but can\'t find an answer? \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7a5854\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e811570\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Are you ready to learn more about our care services or career opportunities? Send us a message! \",\"pp_display_conditions\":[{\"_id\":\"62dce2a\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7703b34c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":274,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"(310) 694-5001\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5f6d554\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":275,\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156-1.svg\"},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"info@avalumcare.com\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"icon_space\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"16bc369\",\"pp_condition_date_time_before_value\":\"2026-02-11 12:12\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h4\",\"content_vertical_alignment\":\"middle\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"493b732b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b23956\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e28b74c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5af1122\"}],\"padding\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"39\",\"bottom\":\"59\",\"left\":\"39\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41291a6\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5520e782\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"e628954\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"f41bf51\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_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_4792f87\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"_id\":\"4792f87\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"ceccba7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"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\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"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\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#2121212B\",\"pp_display_conditions\":[{\"_id\":\"b087708\",\"pp_condition_date_time_before_value\":\"2026-02-13 15:05\"}],\"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\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@avalumcare.com\",\"email_subject\":\"Contact Us - Avalum Care\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Avalum Care\",\"email_reply_to\":\"email\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Avalum Care&quot;\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Avalum Care\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5271, 581, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(5288, 582, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5309, 584, '_elementor_edit_mode', 'builder'),
(5310, 584, '_elementor_template_type', 'header'),
(5311, 584, '_elementor_version', '3.35.3'),
(5312, 584, '_elementor_pro_version', '3.25.4'),
(5313, 584, '_wp_page_template', 'default');
INSERT INTO `wpa_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5314, 584, '_elementor_data', '[{\"id\":\"8ccb4b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"92891a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1b65462\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ea4d7ac\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"5ef5e46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor6\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"520d15d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5548d0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"97f3aa4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"81c2ac8\"}],\"pp_display_conditions\":[{\"_id\":\"5b52aae\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3bd370\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"info@avalumcare.com\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/email_12259156.svg\",\"id\":73},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"mailto:info@avalumcare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"start\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"eb17524\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"acc987c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54a496a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2411070\"}],\"pp_display_conditions\":[{\"_id\":\"1c4ebfe\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e67a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(310) 694-5001\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/phone-call_3779208.svg\",\"id\":72},\"library\":\"svg\"},\"_id\":\"0db4373\",\"link\":{\"url\":\"tel:3106945001\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"end\",\"icon_color\":\"#979797\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_align\":\"right\",\"text_color\":\"#979797\",\"pp_display_conditions\":[{\"_id\":\"22f2b08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d488cd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b5351f6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"605e66f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba68b26\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D1D5DB24\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-103\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":false},\"z_index\":9,\"pp_display_conditions\":[{\"_id\":\"d730511\"}],\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"479a702\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9ad2f66\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"feb9ab3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"668acbf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d134e8e\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1e84985\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/logo-7.png\",\"id\":78,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ab95c9c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c0b942\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c885bc0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"815df83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2a46e12\"}],\"pp_display_conditions\":[{\"_id\":\"6504ca7\"}],\"width_mobile\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]}},\"elements\":[{\"id\":\"56c5c4d\",\"elType\":\"widget\",\"settings\":{\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#BDBDBD\",\"color_menu_item_hover\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#8cca1f\",\"pointer_color_menu_item_active\":\"#8cca1f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"pointer_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cd69354\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"pointer_color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"dropdown_divider_color\":\"\"},\"color_menu_item_active\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#33334b\",\"mobile_sub_link_color\":\"#33334b\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_bg_hover\":\"#8cca1f\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#8cca1f\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_text_transform\":\"capitalize\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#8cca1f\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#8cca1f\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#E9EBED\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"a69e58a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"76e36ee\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9813d05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/avalumcare\\/wp-content\\/uploads\\/2026\\/02\\/2343-1.jpg.jpeg\",\"id\":300,\"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\":\"919afae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"36e9898\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30d7229\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"05fb7be\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"519f487\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae253\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c801b8b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2a39a3\"}],\"pp_display_conditions\":[{\"_id\":\"651cd0e\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48f9aae\",\"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\",\"header_size\":\"h2\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5b7510\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5302, 583, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5319, 70, '_elementor_page_settings', 'a:0:{}'),
(5320, 70, '_elementor_controls_usage', 'a:6:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;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:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:2;s:17:\"icon_align_mobile\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:15:\"icon_self_align\";i:2;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";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:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:8:\"flex_gap\";i:2;s:11:\"boxed_width\";i:2;s:20:\"flex_justify_content\";i:2;s:10:\"min_height\";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:8;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;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:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:14:\"section_layout\";a:4:{s:7:\"padding\";i:3;s:6:\"margin\";i:2;s:7:\"z_index\";i:1;s:20:\"e_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";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: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:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:5:{s:23:\"section_style_main_menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:30:\"pointer_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:13:\"pointer_width\";i:1;s:22:\"color_menu_item_active\";i:1;}s:16:\"style_typography\";a:7:{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:\"menu_typography_text_transform\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:34:\"dropdown_typography_text_transform\";i:1;}s:22:\"section_style_dropdown\";a:8:{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_color\";i:1;s:22:\"dropdown_divider_width\";i:1;}s:12:\"style_toggle\";a:1:{s:12:\"toggle_color\";i:1;}s:16:\"style_responsive\";a:8:{s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_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:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:16:\"_flex_align_self\";i: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:2;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:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";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_responsive\";a:2:{s:17:\"hide_mobile_extra\";i: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:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5316, 584, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}');

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

--
-- Table structure for table `wpa_posts`
--

CREATE TABLE `wpa_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 `wpa_posts`
--

INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 11:24:42', '2026-02-10 11:24:42', '<!-- 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!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2026-02-10 11:24:42', '2026-02-10 11:24:42', '', 0, 'https://mrarif.me/avalumcare/?p=1', 0, 'post', '', 1),
(2, 1, '2026-02-10 11:24:42', '2026-02-10 11:24:42', '<!-- 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\"><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></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\"><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></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/avalumcare/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-10 11:24:42', '2026-02-10 11:24:42', '', 0, 'https://mrarif.me/avalumcare/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-02-10 11:24:42', '2026-02-10 11:24:42', '<!-- 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/avalumcare.</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-10 11:24:42', '2026-02-10 11:24:42', '', 0, 'https://mrarif.me/avalumcare/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-02-10 11:24:43', '2026-02-10 11:24:43', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-02-10 11:24:43', '2026-02-10 11:24:43', '', 0, 'https://mrarif.me/avalumcare/index.php/2026/02/10/navigation/', 0, 'wp_navigation', '', 0),
(6, 1, '2026-02-10 11:25:34', '2026-02-10 11:25:34', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-02-10 11:47:40', '2026-02-10 11:47:40', '', 0, 'https://mrarif.me/avalumcare/?p=6', 0, 'elementor_library', '', 0),
(10, 1, '2026-02-10 11:42:58', '2026-02-10 11:42:58', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-02-11 08:24:36', '2026-02-11 08:24:36', '', 0, 'https://mrarif.me/avalumcare/?page_id=10', 0, 'page', '', 0),
(11, 1, '2026-02-10 11:42:58', '2026-02-10 11:42:58', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 11:42:58', '2026-02-10 11:42:58', '', 10, 'https://mrarif.me/avalumcare/?p=11', 0, 'revision', '', 0),
(15, 1, '2026-02-10 11:45:54', '2026-02-10 11:45:54', '<h2>Right at Home Los Angeles Westside</h2>		Need help right now? Call us anytime at								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 11:45:54', '2026-02-10 11:45:54', '', 10, 'https://mrarif.me/avalumcare/?p=15', 0, 'revision', '', 0),
(13, 1, '2026-02-10 11:45:53', '2026-02-10 11:45:53', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 11:45:53', '2026-02-10 11:45:53', '', 10, 'https://mrarif.me/avalumcare/?p=13', 0, 'revision', '', 0),
(14, 1, '2026-02-10 11:45:53', '2026-02-10 11:45:53', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 11:45:53', '2026-02-10 11:45:53', '', 10, 'https://mrarif.me/avalumcare/?p=14', 0, 'revision', '', 0),
(16, 1, '2026-02-10 11:46:04', '2026-02-10 11:46:04', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-10 11:46:04', '2026-02-10 11:46:04', '', 6, 'https://mrarif.me/avalumcare/?p=16', 0, 'revision', '', 0),
(17, 1, '2026-02-10 11:46:59', '2026-02-10 11:46:59', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-10 11:46:59', '2026-02-10 11:46:59', '', 6, 'https://mrarif.me/avalumcare/?p=17', 0, 'revision', '', 0),
(18, 1, '2026-02-10 11:47:00', '2026-02-10 11:47:00', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-10 11:47:00', '2026-02-10 11:47:00', '', 6, 'https://mrarif.me/avalumcare/?p=18', 0, 'revision', '', 0),
(19, 1, '2026-02-10 11:47:40', '2026-02-10 11:47:40', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2026-02-10 11:47:40', '2026-02-10 11:47:40', '', 6, 'https://mrarif.me/avalumcare/?p=19', 0, 'revision', '', 0),
(23, 1, '2026-02-10 12:04:38', '2026-02-10 12:04:38', '<h2>Right at Home Los Angeles Westside</h2>		Need help right now? Call us anytime at								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:04:38', '2026-02-10 12:04:38', '', 10, 'https://mrarif.me/avalumcare/?p=23', 0, 'revision', '', 0),
(24, 1, '2026-02-10 12:04:38', '2026-02-10 12:04:38', '<h2>Right at Home Los Angeles Westside</h2>		Need help right now? Call us anytime at								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:04:38', '2026-02-10 12:04:38', '', 10, 'https://mrarif.me/avalumcare/?p=24', 0, 'revision', '', 0),
(25, 1, '2026-02-10 12:04:38', '2026-02-10 12:04:38', '<h2>Avalum Care</h2>		Need help right now? Call us anytime at								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:04:38', '2026-02-10 12:04:38', '', 10, 'https://mrarif.me/avalumcare/?p=25', 0, 'revision', '', 0),
(26, 1, '2026-02-10 12:07:59', '2026-02-10 12:07:59', '<h2>Avalum Care</h2>		Need help right now? Call us anytime at								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:07:59', '2026-02-10 12:07:59', '', 10, 'https://mrarif.me/avalumcare/?p=26', 0, 'revision', '', 0),
(27, 1, '2026-02-10 12:07:59', '2026-02-10 12:07:59', '<h2>Avalum Care</h2>		Need help right now? Call us anytime at								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:07:59', '2026-02-10 12:07:59', '', 10, 'https://mrarif.me/avalumcare/?p=27', 0, 'revision', '', 0),
(28, 1, '2026-02-10 12:07:59', '2026-02-10 12:07:59', '<h2>Avalum Care</h2>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:07:59', '2026-02-10 12:07:59', '', 10, 'https://mrarif.me/avalumcare/?p=28', 0, 'revision', '', 0),
(29, 1, '2026-02-10 12:14:33', '2026-02-10 12:14:33', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2026-02-11 06:28:06', '2026-02-11 06:28:06', '', 0, 'https://mrarif.me/avalumcare/?page_id=29', 0, 'page', '', 0),
(30, 1, '2026-02-10 12:14:33', '2026-02-10 12:14:33', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-10 12:14:33', '2026-02-10 12:14:33', '', 29, 'https://mrarif.me/avalumcare/?p=30', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(31, 1, '2026-02-10 12:14:57', '2026-02-10 12:14:57', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a href=\"https://mrarif.me/avalumcare/companionship/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a href=\"https://mrarif.me/avalumcare/errand-service/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a href=\"https://mrarif.me/avalumcare/light-housekeeping/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a href=\"https://mrarif.me/avalumcare/new-boost/\">\n														Learn More													\n																																			</a>', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2026-02-11 07:06:44', '2026-02-11 07:06:44', '', 0, 'https://mrarif.me/avalumcare/?page_id=31', 0, 'page', '', 0),
(32, 1, '2026-02-10 12:14:57', '2026-02-10 12:14:57', '', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-10 12:14:57', '2026-02-10 12:14:57', '', 31, 'https://mrarif.me/avalumcare/?p=32', 0, 'revision', '', 0),
(33, 1, '2026-02-10 12:15:20', '2026-02-10 12:15:20', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'publish', 'closed', 'closed', '', 'resources', '', '', '2026-02-11 08:12:51', '2026-02-11 08:12:51', '', 0, 'https://mrarif.me/avalumcare/?page_id=33', 0, 'page', '', 0),
(34, 1, '2026-02-10 12:15:20', '2026-02-10 12:15:20', '', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-10 12:15:20', '2026-02-10 12:15:20', '', 33, 'https://mrarif.me/avalumcare/?p=34', 0, 'revision', '', 0),
(35, 1, '2026-02-10 12:15:43', '2026-02-10 12:15:43', '<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2026-02-11 08:08:03', '2026-02-11 08:08:03', '', 0, 'https://mrarif.me/avalumcare/?page_id=35', 0, 'page', '', 0),
(36, 1, '2026-02-10 12:15:43', '2026-02-10 12:15:43', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2026-02-10 12:15:43', '2026-02-10 12:15:43', '', 35, 'https://mrarif.me/avalumcare/?p=36', 0, 'revision', '', 0),
(37, 1, '2026-02-11 08:17:50', '2026-02-10 12:16:21', ' ', '', '', 'publish', 'closed', 'closed', '', '37', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=37', 1, 'nav_menu_item', '', 0),
(38, 1, '2026-02-11 08:17:50', '2026-02-10 12:16:21', ' ', '', '', 'publish', 'closed', 'closed', '', '38', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=38', 2, 'nav_menu_item', '', 0),
(39, 1, '2026-02-11 08:17:50', '2026-02-10 12:16:21', ' ', '', '', 'publish', 'closed', 'closed', '', '39', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=39', 15, 'nav_menu_item', '', 0),
(40, 1, '2026-02-11 08:17:50', '2026-02-10 12:16:21', ' ', '', '', 'publish', 'closed', 'closed', '', '40', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=40', 14, 'nav_menu_item', '', 0),
(41, 1, '2026-02-10 12:16:11', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2026-02-10 12:16:11', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/avalumcare/?p=41', 1, 'nav_menu_item', '', 0),
(42, 1, '2026-02-11 08:17:50', '2026-02-10 12:16:21', ' ', '', '', 'publish', 'closed', 'closed', '', '42', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=42', 3, 'nav_menu_item', '', 0),
(43, 1, '2026-02-10 12:29:15', '2026-02-10 12:29:15', '', 'banner (17)', '', 'inherit', 'open', 'closed', '', 'banner-17', '', '', '2026-02-10 12:29:15', '2026-02-10 12:29:15', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/banner-17.jpeg', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2026-02-10 12:30:11', '2026-02-10 12:30:11', '<h2>Avalum Care</h2>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:30:11', '2026-02-10 12:30:11', '', 10, 'https://mrarif.me/avalumcare/?p=44', 0, 'revision', '', 0),
(45, 1, '2026-02-10 12:30:11', '2026-02-10 12:30:11', '<h2>Avalum Care</h2>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:30:11', '2026-02-10 12:30:11', '', 10, 'https://mrarif.me/avalumcare/?p=45', 0, 'revision', '', 0),
(46, 1, '2026-02-10 12:30:11', '2026-02-10 12:30:11', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:30:11', '2026-02-10 12:30:11', '', 10, 'https://mrarif.me/avalumcare/?p=46', 0, 'revision', '', 0),
(47, 1, '2026-02-10 12:31:54', '2026-02-10 12:31:54', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:31:54', '2026-02-10 12:31:54', '', 10, 'https://mrarif.me/avalumcare/?p=47', 0, 'revision', '', 0),
(48, 1, '2026-02-10 12:31:54', '2026-02-10 12:31:54', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:31:54', '2026-02-10 12:31:54', '', 10, 'https://mrarif.me/avalumcare/?p=48', 0, 'revision', '', 0),
(49, 1, '2026-02-10 12:31:54', '2026-02-10 12:31:54', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:31:54', '2026-02-10 12:31:54', '', 10, 'https://mrarif.me/avalumcare/?p=49', 0, 'revision', '', 0),
(50, 1, '2026-02-10 12:32:41', '2026-02-10 12:32:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:32:41', '2026-02-10 12:32:41', '', 10, 'https://mrarif.me/avalumcare/?p=50', 0, 'revision', '', 0),
(51, 1, '2026-02-10 12:32:41', '2026-02-10 12:32:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:32:41', '2026-02-10 12:32:41', '', 10, 'https://mrarif.me/avalumcare/?p=51', 0, 'revision', '', 0),
(52, 1, '2026-02-10 12:32:41', '2026-02-10 12:32:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:32:41', '2026-02-10 12:32:41', '', 10, 'https://mrarif.me/avalumcare/?p=52', 0, 'revision', '', 0),
(53, 1, '2026-02-10 12:32:48', '2026-02-10 12:32:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:32:48', '2026-02-10 12:32:48', '', 10, 'https://mrarif.me/avalumcare/?p=53', 0, 'revision', '', 0),
(54, 1, '2026-02-10 12:32:48', '2026-02-10 12:32:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:32:48', '2026-02-10 12:32:48', '', 10, 'https://mrarif.me/avalumcare/?p=54', 0, 'revision', '', 0),
(55, 1, '2026-02-10 12:32:49', '2026-02-10 12:32:49', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:32:49', '2026-02-10 12:32:49', '', 10, 'https://mrarif.me/avalumcare/?p=55', 0, 'revision', '', 0),
(56, 1, '2026-02-10 12:33:13', '2026-02-10 12:33:13', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:33:13', '2026-02-10 12:33:13', '', 10, 'https://mrarif.me/avalumcare/?p=56', 0, 'revision', '', 0),
(57, 1, '2026-02-10 12:33:13', '2026-02-10 12:33:13', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:33:13', '2026-02-10 12:33:13', '', 10, 'https://mrarif.me/avalumcare/?p=57', 0, 'revision', '', 0),
(58, 1, '2026-02-10 12:33:14', '2026-02-10 12:33:14', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:33:14', '2026-02-10 12:33:14', '', 10, 'https://mrarif.me/avalumcare/?p=58', 0, 'revision', '', 0),
(60, 1, '2026-02-10 12:34:51', '2026-02-10 12:34:51', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:34:51', '2026-02-10 12:34:51', '', 10, 'https://mrarif.me/avalumcare/?p=60', 0, 'revision', '', 0),
(61, 1, '2026-02-10 12:34:51', '2026-02-10 12:34:51', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:34:51', '2026-02-10 12:34:51', '', 10, 'https://mrarif.me/avalumcare/?p=61', 0, 'revision', '', 0),
(62, 1, '2026-02-10 12:34:51', '2026-02-10 12:34:51', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:34:51', '2026-02-10 12:34:51', '', 10, 'https://mrarif.me/avalumcare/?p=62', 0, 'revision', '', 0),
(63, 1, '2026-02-10 12:36:09', '2026-02-10 12:36:09', '', 'banner (18)', '', 'inherit', 'open', 'closed', '', 'banner-18', '', '', '2026-02-10 12:36:09', '2026-02-10 12:36:09', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/banner-18.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(64, 1, '2026-02-10 12:36:25', '2026-02-10 12:36:25', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:36:25', '2026-02-10 12:36:25', '', 10, 'https://mrarif.me/avalumcare/?p=64', 0, 'revision', '', 0),
(65, 1, '2026-02-10 12:36:25', '2026-02-10 12:36:25', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:36:25', '2026-02-10 12:36:25', '', 10, 'https://mrarif.me/avalumcare/?p=65', 0, 'revision', '', 0),
(66, 1, '2026-02-10 12:36:26', '2026-02-10 12:36:26', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:36:26', '2026-02-10 12:36:26', '', 10, 'https://mrarif.me/avalumcare/?p=66', 0, 'revision', '', 0),
(67, 1, '2026-02-10 12:36:42', '2026-02-10 12:36:42', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:36:42', '2026-02-10 12:36:42', '', 10, 'https://mrarif.me/avalumcare/?p=67', 0, 'revision', '', 0),
(68, 1, '2026-02-10 12:36:42', '2026-02-10 12:36:42', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:36:42', '2026-02-10 12:36:42', '', 10, 'https://mrarif.me/avalumcare/?p=68', 0, 'revision', '', 0),
(69, 1, '2026-02-10 12:36:43', '2026-02-10 12:36:43', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 12:36:43', '2026-02-10 12:36:43', '', 10, 'https://mrarif.me/avalumcare/?p=69', 0, 'revision', '', 0),
(70, 1, '2026-02-10 12:41:16', '2026-02-10 12:41:16', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'publish', 'closed', 'closed', '', 'elementor-header-70', '', '', '2026-02-11 08:28:29', '2026-02-11 08:28:29', '', 0, 'https://mrarif.me/avalumcare/?post_type=elementor_library&#038;p=70', 0, 'elementor_library', '', 0),
(71, 1, '2026-02-10 12:41:16', '2026-02-10 12:41:16', '', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 12:41:16', '2026-02-10 12:41:16', '', 70, 'https://mrarif.me/avalumcare/?p=71', 0, 'revision', '', 0),
(72, 1, '2026-02-10 12:43:26', '2026-02-10 12:43:26', '', 'phone-call_3779208', '', 'inherit', 'open', 'closed', '', 'phone-call_3779208', '', '', '2026-02-10 12:43:26', '2026-02-10 12:43:26', '', 70, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/phone-call_3779208.svg', 0, 'attachment', 'image/svg+xml', 0),
(73, 1, '2026-02-10 12:46:05', '2026-02-10 12:46:05', '', 'email_12259156', '', 'inherit', 'open', 'closed', '', 'email_12259156', '', '', '2026-02-10 12:46:05', '2026-02-10 12:46:05', '', 70, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/email_12259156.svg', 0, 'attachment', 'image/svg+xml', 0),
(74, 1, '2026-02-10 12:46:11', '2026-02-10 12:46:11', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 12:46:11', '2026-02-10 12:46:11', '', 70, 'https://mrarif.me/avalumcare/?p=74', 0, 'revision', '', 0),
(80, 1, '2026-02-10 13:00:18', '2026-02-10 13:00:18', '', 'fav (7)', '', 'inherit', 'open', 'closed', '', 'fav-7', '', '', '2026-02-10 13:00:18', '2026-02-10 13:00:18', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/fav-7.png', 0, 'attachment', 'image/png', 0),
(81, 1, '2026-02-10 13:00:24', '2026-02-10 13:00:24', 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/cropped-fav-7.png', 'cropped-fav-7.png', '', 'inherit', 'open', 'closed', '', 'cropped-fav-7-png', '', '', '2026-02-10 13:00:24', '2026-02-10 13:00:24', '', 80, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/cropped-fav-7.png', 0, 'attachment', 'image/png', 0),
(76, 1, '2026-02-10 12:51:56', '2026-02-10 12:51:56', '', 'WhatsApp_Image_2026-02-10_at_17.57.48-removebg-preview', '', 'inherit', 'open', 'closed', '', 'whatsapp_image_2026-02-10_at_17-57-48-removebg-preview', '', '', '2026-02-10 12:51:56', '2026-02-10 12:51:56', '', 70, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/WhatsApp_Image_2026-02-10_at_17.57.48-removebg-preview.png', 0, 'attachment', 'image/png', 0),
(79, 1, '2026-02-10 12:59:45', '2026-02-10 12:59:45', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																	<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />																					<a href=\"#\">\n									Click here\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 12:59:45', '2026-02-10 12:59:45', '', 70, 'https://mrarif.me/avalumcare/?p=79', 0, 'revision', '', 0),
(78, 1, '2026-02-10 12:57:19', '2026-02-10 12:57:19', '', 'logo (7)', '', 'inherit', 'open', 'closed', '', 'logo-7', '', '', '2026-02-10 12:57:19', '2026-02-10 12:57:19', '', 70, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png', 0, 'attachment', 'image/png', 0),
(82, 1, '2026-02-10 13:01:09', '2026-02-10 13:01:09', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																	<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />																					<a href=\"#\">\n									Click here\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:01:09', '2026-02-10 13:01:09', '', 70, 'https://mrarif.me/avalumcare/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-02-10 13:01:23', '2026-02-10 13:01:23', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"#\">\n									Click here\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:01:23', '2026-02-10 13:01:23', '', 70, 'https://mrarif.me/avalumcare/?p=83', 0, 'revision', '', 0),
(84, 1, '2026-02-10 13:02:03', '2026-02-10 13:02:03', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"#\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:02:03', '2026-02-10 13:02:03', '', 70, 'https://mrarif.me/avalumcare/?p=84', 0, 'revision', '', 0),
(85, 1, '2026-02-10 13:02:15', '2026-02-10 13:02:15', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:02:15', '2026-02-10 13:02:15', '', 70, 'https://mrarif.me/avalumcare/?p=85', 0, 'revision', '', 0),
(86, 1, '2026-02-10 13:02:53', '2026-02-10 13:02:53', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:02:53', '2026-02-10 13:02:53', '', 70, 'https://mrarif.me/avalumcare/?p=86', 0, 'revision', '', 0),
(87, 1, '2026-02-10 13:03:08', '2026-02-10 13:03:08', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:03:08', '2026-02-10 13:03:08', '', 70, 'https://mrarif.me/avalumcare/?p=87', 0, 'revision', '', 0),
(88, 1, '2026-02-10 13:03:50', '2026-02-10 13:03:50', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:03:50', '2026-02-10 13:03:50', '', 70, 'https://mrarif.me/avalumcare/?p=88', 0, 'revision', '', 0),
(89, 1, '2026-02-10 13:04:28', '2026-02-10 13:04:28', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:04:28', '2026-02-10 13:04:28', '', 70, 'https://mrarif.me/avalumcare/?p=89', 0, 'revision', '', 0),
(90, 1, '2026-02-10 13:05:04', '2026-02-10 13:05:04', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:05:04', '2026-02-10 13:05:04', '', 10, 'https://mrarif.me/avalumcare/?p=90', 0, 'revision', '', 0),
(91, 1, '2026-02-10 13:05:04', '2026-02-10 13:05:04', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:05:04', '2026-02-10 13:05:04', '', 10, 'https://mrarif.me/avalumcare/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-02-10 13:05:04', '2026-02-10 13:05:04', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:05:04', '2026-02-10 13:05:04', '', 10, 'https://mrarif.me/avalumcare/?p=92', 0, 'revision', '', 0),
(93, 1, '2026-02-10 13:06:29', '2026-02-10 13:06:29', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:06:29', '2026-02-10 13:06:29', '', 10, 'https://mrarif.me/avalumcare/?p=93', 0, 'revision', '', 0),
(94, 1, '2026-02-10 13:06:29', '2026-02-10 13:06:29', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:06:29', '2026-02-10 13:06:29', '', 10, 'https://mrarif.me/avalumcare/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-02-10 13:06:30', '2026-02-10 13:06:30', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:06:30', '2026-02-10 13:06:30', '', 10, 'https://mrarif.me/avalumcare/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-02-10 13:07:01', '2026-02-10 13:07:01', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:07:01', '2026-02-10 13:07:01', '', 10, 'https://mrarif.me/avalumcare/?p=96', 0, 'revision', '', 0),
(97, 1, '2026-02-10 13:07:01', '2026-02-10 13:07:01', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:07:01', '2026-02-10 13:07:01', '', 10, 'https://mrarif.me/avalumcare/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-02-10 13:07:01', '2026-02-10 13:07:01', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:07:01', '2026-02-10 13:07:01', '', 10, 'https://mrarif.me/avalumcare/?p=98', 0, 'revision', '', 0),
(99, 1, '2026-02-10 13:07:29', '2026-02-10 13:07:29', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:07:29', '2026-02-10 13:07:29', '', 70, 'https://mrarif.me/avalumcare/?p=99', 0, 'revision', '', 0),
(100, 1, '2026-02-10 13:07:46', '2026-02-10 13:07:46', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:07:46', '2026-02-10 13:07:46', '', 70, 'https://mrarif.me/avalumcare/?p=100', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(101, 1, '2026-02-10 13:08:40', '2026-02-10 13:08:40', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:08:40', '2026-02-10 13:08:40', '', 70, 'https://mrarif.me/avalumcare/?p=101', 0, 'revision', '', 0),
(102, 1, '2026-02-10 13:08:58', '2026-02-10 13:08:58', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:08:58', '2026-02-10 13:08:58', '', 70, 'https://mrarif.me/avalumcare/?p=102', 0, 'revision', '', 0),
(103, 1, '2026-02-10 13:09:45', '2026-02-10 13:09:45', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:09:45', '2026-02-10 13:09:45', '', 10, 'https://mrarif.me/avalumcare/?p=103', 0, 'revision', '', 0),
(104, 1, '2026-02-10 13:09:45', '2026-02-10 13:09:45', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:09:45', '2026-02-10 13:09:45', '', 10, 'https://mrarif.me/avalumcare/?p=104', 0, 'revision', '', 0),
(105, 1, '2026-02-10 13:09:45', '2026-02-10 13:09:45', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:09:45', '2026-02-10 13:09:45', '', 10, 'https://mrarif.me/avalumcare/?p=105', 0, 'revision', '', 0),
(106, 1, '2026-02-10 13:10:48', '2026-02-10 13:10:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:10:48', '2026-02-10 13:10:48', '', 10, 'https://mrarif.me/avalumcare/?p=106', 0, 'revision', '', 0),
(107, 1, '2026-02-10 13:10:48', '2026-02-10 13:10:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:10:48', '2026-02-10 13:10:48', '', 10, 'https://mrarif.me/avalumcare/?p=107', 0, 'revision', '', 0),
(108, 1, '2026-02-10 13:10:48', '2026-02-10 13:10:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:10:48', '2026-02-10 13:10:48', '', 10, 'https://mrarif.me/avalumcare/?p=108', 0, 'revision', '', 0),
(109, 1, '2026-02-10 13:11:35', '2026-02-10 13:11:35', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:11:35', '2026-02-10 13:11:35', '', 10, 'https://mrarif.me/avalumcare/?p=109', 0, 'revision', '', 0),
(110, 1, '2026-02-10 13:11:36', '2026-02-10 13:11:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:11:36', '2026-02-10 13:11:36', '', 10, 'https://mrarif.me/avalumcare/?p=110', 0, 'revision', '', 0),
(111, 1, '2026-02-10 13:11:36', '2026-02-10 13:11:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:11:36', '2026-02-10 13:11:36', '', 10, 'https://mrarif.me/avalumcare/?p=111', 0, 'revision', '', 0),
(112, 1, '2026-02-10 13:14:21', '2026-02-10 13:14:21', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:14:21', '2026-02-10 13:14:21', '', 70, 'https://mrarif.me/avalumcare/?p=112', 0, 'revision', '', 0),
(113, 1, '2026-02-10 13:14:42', '2026-02-10 13:14:42', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:14:42', '2026-02-10 13:14:42', '', 70, 'https://mrarif.me/avalumcare/?p=113', 0, 'revision', '', 0),
(114, 1, '2026-02-10 13:14:57', '2026-02-10 13:14:57', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:14:57', '2026-02-10 13:14:57', '', 70, 'https://mrarif.me/avalumcare/?p=114', 0, 'revision', '', 0),
(115, 1, '2026-02-10 13:15:09', '2026-02-10 13:15:09', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:15:09', '2026-02-10 13:15:09', '', 70, 'https://mrarif.me/avalumcare/?p=115', 0, 'revision', '', 0),
(116, 1, '2026-02-10 13:15:40', '2026-02-10 13:15:40', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:15:40', '2026-02-10 13:15:40', '', 70, 'https://mrarif.me/avalumcare/?p=116', 0, 'revision', '', 0),
(117, 1, '2026-02-10 13:16:06', '2026-02-10 13:16:06', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:16:06', '2026-02-10 13:16:06', '', 70, 'https://mrarif.me/avalumcare/?p=117', 0, 'revision', '', 0),
(118, 1, '2026-02-10 13:16:58', '2026-02-10 13:16:58', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:16:58', '2026-02-10 13:16:58', '', 10, 'https://mrarif.me/avalumcare/?p=118', 0, 'revision', '', 0),
(119, 1, '2026-02-10 13:16:58', '2026-02-10 13:16:58', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:16:58', '2026-02-10 13:16:58', '', 10, 'https://mrarif.me/avalumcare/?p=119', 0, 'revision', '', 0),
(120, 1, '2026-02-10 13:16:59', '2026-02-10 13:16:59', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:16:59', '2026-02-10 13:16:59', '', 10, 'https://mrarif.me/avalumcare/?p=120', 0, 'revision', '', 0),
(121, 1, '2026-02-10 13:17:17', '2026-02-10 13:17:17', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:17:17', '2026-02-10 13:17:17', '', 70, 'https://mrarif.me/avalumcare/?p=121', 0, 'revision', '', 0),
(122, 1, '2026-02-10 13:17:54', '2026-02-10 13:17:54', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:17:54', '2026-02-10 13:17:54', '', 10, 'https://mrarif.me/avalumcare/?p=122', 0, 'revision', '', 0),
(123, 1, '2026-02-10 13:17:55', '2026-02-10 13:17:55', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:17:55', '2026-02-10 13:17:55', '', 10, 'https://mrarif.me/avalumcare/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-02-10 13:17:55', '2026-02-10 13:17:55', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:17:55', '2026-02-10 13:17:55', '', 10, 'https://mrarif.me/avalumcare/?p=124', 0, 'revision', '', 0),
(125, 1, '2026-02-10 13:21:42', '2026-02-10 13:21:42', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:21:42', '2026-02-10 13:21:42', '', 70, 'https://mrarif.me/avalumcare/?p=125', 0, 'revision', '', 0),
(126, 1, '2026-02-10 13:21:49', '2026-02-10 13:21:49', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:21:49', '2026-02-10 13:21:49', '', 70, 'https://mrarif.me/avalumcare/?p=126', 0, 'revision', '', 0),
(127, 1, '2026-02-10 13:22:21', '2026-02-10 13:22:21', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 13:22:21', '2026-02-10 13:22:21', '', 70, 'https://mrarif.me/avalumcare/?p=127', 0, 'revision', '', 0),
(128, 1, '2026-02-10 13:23:02', '2026-02-10 13:23:02', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:02', '2026-02-10 13:23:02', '', 10, 'https://mrarif.me/avalumcare/?p=128', 0, 'revision', '', 0),
(129, 1, '2026-02-10 13:23:03', '2026-02-10 13:23:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:03', '2026-02-10 13:23:03', '', 10, 'https://mrarif.me/avalumcare/?p=129', 0, 'revision', '', 0),
(130, 1, '2026-02-10 13:23:03', '2026-02-10 13:23:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:03', '2026-02-10 13:23:03', '', 10, 'https://mrarif.me/avalumcare/?p=130', 0, 'revision', '', 0),
(131, 1, '2026-02-10 13:23:31', '2026-02-10 13:23:31', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:31', '2026-02-10 13:23:31', '', 10, 'https://mrarif.me/avalumcare/?p=131', 0, 'revision', '', 0),
(132, 1, '2026-02-10 13:23:31', '2026-02-10 13:23:31', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:31', '2026-02-10 13:23:31', '', 10, 'https://mrarif.me/avalumcare/?p=132', 0, 'revision', '', 0),
(133, 1, '2026-02-10 13:23:32', '2026-02-10 13:23:32', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:32', '2026-02-10 13:23:32', '', 10, 'https://mrarif.me/avalumcare/?p=133', 0, 'revision', '', 0),
(134, 1, '2026-02-10 13:23:51', '2026-02-10 13:23:51', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:51', '2026-02-10 13:23:51', '', 10, 'https://mrarif.me/avalumcare/?p=134', 0, 'revision', '', 0),
(135, 1, '2026-02-10 13:23:51', '2026-02-10 13:23:51', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:51', '2026-02-10 13:23:51', '', 10, 'https://mrarif.me/avalumcare/?p=135', 0, 'revision', '', 0),
(136, 1, '2026-02-10 13:23:52', '2026-02-10 13:23:52', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:23:52', '2026-02-10 13:23:52', '', 10, 'https://mrarif.me/avalumcare/?p=136', 0, 'revision', '', 0),
(137, 1, '2026-02-10 13:27:02', '2026-02-10 13:27:02', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:27:02', '2026-02-10 13:27:02', '', 10, 'https://mrarif.me/avalumcare/?p=137', 0, 'revision', '', 0),
(138, 1, '2026-02-10 13:27:03', '2026-02-10 13:27:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:27:03', '2026-02-10 13:27:03', '', 10, 'https://mrarif.me/avalumcare/?p=138', 0, 'revision', '', 0),
(139, 1, '2026-02-10 13:27:03', '2026-02-10 13:27:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:27:03', '2026-02-10 13:27:03', '', 10, 'https://mrarif.me/avalumcare/?p=139', 0, 'revision', '', 0),
(140, 1, '2026-02-10 13:28:45', '2026-02-10 13:28:45', '', 'about-2.jpg', '', 'inherit', 'open', 'closed', '', 'about-2-jpg', '', '', '2026-02-10 13:28:45', '2026-02-10 13:28:45', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(141, 1, '2026-02-10 13:28:45', '2026-02-10 13:28:45', '', 'first-responder_12252777.svg', '', 'inherit', 'open', 'closed', '', 'first-responder_12252777-svg', '', '', '2026-02-10 13:28:45', '2026-02-10 13:28:45', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/first-responder_12252777.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(142, 1, '2026-02-10 13:28:46', '2026-02-10 13:28:46', '', 'about-3.jpg', '', 'inherit', 'open', 'closed', '', 'about-3-jpg', '', '', '2026-02-10 13:28:46', '2026-02-10 13:28:46', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(143, 1, '2026-02-10 13:28:46', '2026-02-10 13:28:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'about', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2026-02-10 13:28:46', '2026-02-10 13:28:46', '', 0, 'https://mrarif.me/avalumcare/?elementor_library=about', 0, 'elementor_library', '', 0),
(144, 1, '2026-02-10 13:28:46', '2026-02-10 13:28:46', '', 'about', '', 'inherit', 'closed', 'closed', '', '143-revision-v1', '', '', '2026-02-10 13:28:46', '2026-02-10 13:28:46', '', 143, 'https://mrarif.me/avalumcare/?p=144', 0, 'revision', '', 0),
(145, 1, '2026-02-10 13:28:46', '2026-02-10 13:28:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'about', '', 'inherit', 'closed', 'closed', '', '143-revision-v1', '', '', '2026-02-10 13:28:46', '2026-02-10 13:28:46', '', 143, 'https://mrarif.me/avalumcare/?p=145', 0, 'revision', '', 0),
(167, 1, '2026-02-10 13:50:23', '2026-02-10 13:50:23', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:50:23', '2026-02-10 13:50:23', '', 10, 'https://mrarif.me/avalumcare/?p=167', 0, 'revision', '', 0),
(149, 1, '2026-02-10 13:29:53', '2026-02-10 13:29:53', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:29:53', '2026-02-10 13:29:53', '', 10, 'https://mrarif.me/avalumcare/?p=149', 0, 'revision', '', 0),
(147, 1, '2026-02-10 13:29:52', '2026-02-10 13:29:52', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:29:52', '2026-02-10 13:29:52', '', 10, 'https://mrarif.me/avalumcare/?p=147', 0, 'revision', '', 0),
(148, 1, '2026-02-10 13:29:52', '2026-02-10 13:29:52', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:29:52', '2026-02-10 13:29:52', '', 10, 'https://mrarif.me/avalumcare/?p=148', 0, 'revision', '', 0),
(150, 1, '2026-02-10 13:30:17', '2026-02-10 13:30:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:30:17', '2026-02-10 13:30:17', '', 10, 'https://mrarif.me/avalumcare/?p=150', 0, 'revision', '', 0),
(151, 1, '2026-02-10 13:30:17', '2026-02-10 13:30:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:30:17', '2026-02-10 13:30:17', '', 10, 'https://mrarif.me/avalumcare/?p=151', 0, 'revision', '', 0),
(152, 1, '2026-02-10 13:30:18', '2026-02-10 13:30:18', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:30:18', '2026-02-10 13:30:18', '', 10, 'https://mrarif.me/avalumcare/?p=152', 0, 'revision', '', 0),
(153, 1, '2026-02-10 13:35:57', '2026-02-10 13:35:57', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:35:57', '2026-02-10 13:35:57', '', 10, 'https://mrarif.me/avalumcare/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-02-10 13:35:58', '2026-02-10 13:35:58', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:35:58', '2026-02-10 13:35:58', '', 10, 'https://mrarif.me/avalumcare/?p=154', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(155, 1, '2026-02-10 13:35:58', '2026-02-10 13:35:58', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:35:58', '2026-02-10 13:35:58', '', 10, 'https://mrarif.me/avalumcare/?p=155', 0, 'revision', '', 0),
(156, 1, '2026-02-10 13:39:16', '2026-02-10 13:39:16', '', 'target_18053469', '', 'inherit', 'open', 'closed', '', 'target_18053469', '', '', '2026-02-10 13:39:16', '2026-02-10 13:39:16', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/target_18053469.svg', 0, 'attachment', 'image/svg+xml', 0),
(157, 1, '2026-02-10 13:39:56', '2026-02-10 13:39:56', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:39:56', '2026-02-10 13:39:56', '', 10, 'https://mrarif.me/avalumcare/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-02-10 13:39:56', '2026-02-10 13:39:56', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>ABOUT NXT GEN Medical</h2>		NXT GEN Medical is a modern chiropractic clinic specializing in advanced musculoskeletal techniques for effective pain management. Unlike traditional practices that rely solely on spinal adjustments, we incorporate a range of evidence-based therapies to deliver optimal results for our 								<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:39:56', '2026-02-10 13:39:56', '', 10, 'https://mrarif.me/avalumcare/?p=158', 0, 'revision', '', 0),
(166, 1, '2026-02-10 13:47:47', '2026-02-10 13:47:47', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:47:47', '2026-02-10 13:47:47', '', 10, 'https://mrarif.me/avalumcare/?p=166', 0, 'revision', '', 0),
(159, 1, '2026-02-10 13:39:56', '2026-02-10 13:39:56', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:39:56', '2026-02-10 13:39:56', '', 10, 'https://mrarif.me/avalumcare/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-02-10 13:40:31', '2026-02-10 13:40:31', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:40:31', '2026-02-10 13:40:31', '', 10, 'https://mrarif.me/avalumcare/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-02-10 13:40:31', '2026-02-10 13:40:31', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:40:31', '2026-02-10 13:40:31', '', 10, 'https://mrarif.me/avalumcare/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-02-10 13:40:32', '2026-02-10 13:40:32', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:40:32', '2026-02-10 13:40:32', '', 10, 'https://mrarif.me/avalumcare/?p=162', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 13:50:23', '2026-02-10 13:50:23', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:50:23', '2026-02-10 13:50:23', '', 10, 'https://mrarif.me/avalumcare/?p=168', 0, 'revision', '', 0),
(164, 1, '2026-02-10 13:47:47', '2026-02-10 13:47:47', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:47:47', '2026-02-10 13:47:47', '', 10, 'https://mrarif.me/avalumcare/?p=164', 0, 'revision', '', 0),
(165, 1, '2026-02-10 13:47:47', '2026-02-10 13:47:47', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m277.92 139.017c35.846 0 65.008-29.163 65.008-65.009s-29.162-65.008-65.008-65.008c-17.365 0-33.69 6.762-45.968 19.041s-19.04 28.604-19.04 45.968c0 35.846 29.162 65.008 65.008 65.008zm-36.069-101.077c9.635-9.634 22.444-14.94 36.069-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009-51.008-22.882-51.008-51.008c-.001-13.625 5.305-26.435 14.939-36.069zm229.016 371.158h-87.605v-20.125l63.583-47.38c24.953-18.594 31.33-55.968 14.519-85.085l-73.775-127.783c-7.444-12.893-23.99-17.326-36.882-9.882l-70.352 40.617c-6.417 3.705-11.066 9.975-12.769 17.213l-30.61 117.059h-92.762c-15.669 0-28.528 12.234-29.544 27.651h-52.533c-29.299.001-53.137 23.838-53.137 53.138v46.137c0 3.866 3.134 7 7 7h29.222c8.241 26.45 32.956 45.706 62.083 45.706s53.842-19.256 62.083-45.706h29.221c3.866 0 7-3.134 7-7v-46.137c0-7.435-1.599-14.796-4.612-21.555h59.376c13.92 0 24.628-10.133 29.376-27.8l17.504-65.116 32.645 56.542-31.74 35.582h-23.878c-9.374 0-17 7.626-17 17v12.718h-34.247c-3.866 0-7 3.134-7 7v107.108c0 3.866 3.134 7 7 7h143.228c3.866 0 7-3.134 7-7v-22.636h87.605c17.718 0 32.133-14.415 32.133-32.133s-14.414-32.133-32.132-32.133zm-447.867 4.56v-39.137c0-21.581 17.557-39.137 39.137-39.137h55.025c1.796 4.022 4.462 7.57 7.759 10.408-5.607-1.581-11.511-2.446-17.617-2.446-17.364 0-33.689 6.762-45.968 19.041s-19.041 28.604-19.041 45.968c0 1.787.092 3.552.234 5.303zm84.305 45.706c-28.126 0-51.008-22.882-51.008-51.008 0-13.625 5.305-26.435 14.94-36.069 9.634-9.634 22.443-14.94 36.068-14.94 28.126 0 51.008 22.882 51.008 51.008s-22.882 51.009-51.008 51.009zm84.304-84.843v39.137h-19.53c.142-1.751.234-3.516.234-5.303 0-23.511-12.546-44.146-31.294-55.564 1.05.113 2.115.175 3.195.175h40.876c4.275 6.406 6.519 13.794 6.519 21.555zm162.943-60.546-42.164-73.03 10.074-37.476c1.004-3.733-1.209-7.573-4.943-8.577-3.731-1.004-7.573 1.209-8.577 4.943l-32.712 121.697c-2.138 7.953-6.625 17.434-15.857 17.434h-116.16c-8.611 0-15.617-7.005-15.617-15.617s7.005-15.617 15.617-15.617h98.167c3.184 0 5.967-2.149 6.772-5.229l32.001-122.38c.017-.065.033-.13.048-.196.824-3.565 3.009-6.528 6.152-8.344l70.352-40.617c6.207-3.585 14.173-1.449 17.758 4.758l73.775 127.783c13.32 23.07 8.593 52.438-10.76 66.86l-69.144 51.524h-27.32v-12.718c0-8.76-6.663-15.991-15.186-16.9l26.885-30.14c2.012-2.252 2.35-5.542.839-8.158zm-73.272 55.199c0-1.626 1.374-3 3-3h40.735c1.654 0 3 1.346 3 3v12.718h-46.735zm87.981 119.826h-129.228v-93.108h129.228zm101.606-29.636h-87.605v-36.266h87.605c9.999 0 18.133 8.134 18.133 18.133s-8.135 18.133-18.133 18.133zm-369.343-208.719c50.215 0 91.067-40.853 91.067-91.067s-40.852-91.068-91.067-91.068-91.067 40.853-91.067 91.067 40.852 91.068 91.067 91.068zm0-168.135c42.495 0 77.067 34.572 77.067 77.067s-34.572 77.067-77.067 77.067-77.067-34.572-77.067-77.067 34.572-77.067 77.067-77.067zm-20.938 98.006v31.793c0 3.866 3.134 7 7 7h27.876c3.866 0 7-3.134 7-7v-31.793h31.793c3.866 0 7-3.134 7-7v-27.876c0-3.866-3.134-7-7-7h-31.793v-31.794c0-3.866-3.134-7-7-7h-27.876c-3.866 0-7 3.134-7 7v31.794h-31.794c-3.866 0-7 3.134-7 7v27.876c0 3.866 3.134 7 7 7zm-24.794-27.876h31.794c3.866 0 7-3.134 7-7v-31.794h13.876v31.794c0 3.866 3.134 7 7 7h31.793v13.876h-31.793c-3.866 0-7 3.134-7 7v31.793h-13.876v-31.793c0-3.866-3.134-7-7-7h-31.794zm149.817 343.359c0 3.866-3.134 7-7 7h-182.609c-3.866 0-7-3.134-7-7s3.134-7 7-7h182.609c3.866 0 7 3.135 7 7zm71.428-53.553c0-3.866 3.134-7 7-7h13.61v-13.61c0-3.866 3.134-7 7-7s7 3.134 7 7v13.61h13.611c3.866 0 7 3.134 7 7s-3.134 7-7 7h-13.611v13.61c0 3.866-3.134 7-7 7s-7-3.134-7-7v-13.61h-13.61c-3.866 0-7-3.134-7-7z\"></path></svg>				\n									<h5>\n							Nxt Gen Medical						\n					</h5>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:47:47', '2026-02-10 13:47:47', '', 10, 'https://mrarif.me/avalumcare/?p=165', 0, 'revision', '', 0),
(169, 1, '2026-02-10 13:50:24', '2026-02-10 13:50:24', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:50:24', '2026-02-10 13:50:24', '', 10, 'https://mrarif.me/avalumcare/?p=169', 0, 'revision', '', 0),
(170, 1, '2026-02-10 13:53:07', '2026-02-10 13:53:07', '', 'ABOUT (3)', '', 'inherit', 'open', 'closed', '', 'about-3', '', '', '2026-02-10 13:53:07', '2026-02-10 13:53:07', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg', 0, 'attachment', 'image/jpeg', 0),
(171, 1, '2026-02-10 13:53:20', '2026-02-10 13:53:20', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:53:20', '2026-02-10 13:53:20', '', 10, 'https://mrarif.me/avalumcare/?p=171', 0, 'revision', '', 0),
(172, 1, '2026-02-10 13:53:20', '2026-02-10 13:53:20', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-3-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:53:20', '2026-02-10 13:53:20', '', 10, 'https://mrarif.me/avalumcare/?p=172', 0, 'revision', '', 0),
(173, 1, '2026-02-10 13:53:21', '2026-02-10 13:53:21', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:53:21', '2026-02-10 13:53:21', '', 10, 'https://mrarif.me/avalumcare/?p=173', 0, 'revision', '', 0),
(174, 1, '2026-02-10 13:53:46', '2026-02-10 13:53:46', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:53:46', '2026-02-10 13:53:46', '', 10, 'https://mrarif.me/avalumcare/?p=174', 0, 'revision', '', 0),
(175, 1, '2026-02-10 13:53:46', '2026-02-10 13:53:46', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:53:46', '2026-02-10 13:53:46', '', 10, 'https://mrarif.me/avalumcare/?p=175', 0, 'revision', '', 0),
(176, 1, '2026-02-10 13:53:46', '2026-02-10 13:53:46', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:53:46', '2026-02-10 13:53:46', '', 10, 'https://mrarif.me/avalumcare/?p=176', 0, 'revision', '', 0),
(177, 1, '2026-02-10 13:58:00', '2026-02-10 13:58:00', '', 'about (4)', '', 'inherit', 'open', 'closed', '', 'about-4', '', '', '2026-02-10 13:58:00', '2026-02-10 13:58:00', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg', 0, 'attachment', 'image/jpeg', 0),
(178, 1, '2026-02-10 13:58:11', '2026-02-10 13:58:11', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:58:11', '2026-02-10 13:58:11', '', 10, 'https://mrarif.me/avalumcare/?p=178', 0, 'revision', '', 0),
(179, 1, '2026-02-10 13:58:11', '2026-02-10 13:58:11', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-300x300.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-150x150.jpg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:58:11', '2026-02-10 13:58:11', '', 10, 'https://mrarif.me/avalumcare/?p=179', 0, 'revision', '', 0),
(180, 1, '2026-02-10 13:58:11', '2026-02-10 13:58:11', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 13:58:11', '2026-02-10 13:58:11', '', 10, 'https://mrarif.me/avalumcare/?p=180', 0, 'revision', '', 0),
(181, 1, '2026-02-10 14:00:16', '2026-02-10 14:00:16', '', 'distributed_6600212.svg', '', 'inherit', 'open', 'closed', '', 'distributed_6600212-svg', '', '', '2026-02-10 14:00:16', '2026-02-10 14:00:16', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/distributed_6600212.svg', 0, 'attachment', 'image/svg+xml', 0),
(182, 1, '2026-02-10 14:00:16', '2026-02-10 14:00:16', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png', '', '', '2026-02-10 14:00:16', '2026-02-10 14:00:16', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/placeholder.png', 0, 'attachment', 'image/png', 0),
(183, 1, '2026-02-10 14:00:17', '2026-02-10 14:00:17', '', 'adhd_11374835.svg', '', 'inherit', 'open', 'closed', '', 'adhd_11374835-svg', '', '', '2026-02-10 14:00:17', '2026-02-10 14:00:17', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/adhd_11374835.svg', 0, 'attachment', 'image/svg+xml', 0),
(184, 1, '2026-02-10 14:00:18', '2026-02-10 14:00:18', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png-2', '', '', '2026-02-10 14:00:18', '2026-02-10 14:00:18', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/placeholder-1.png', 0, 'attachment', 'image/png', 0),
(185, 1, '2026-02-10 14:00:19', '2026-02-10 14:00:19', '', 'hypnosis_16854159.svg', '', 'inherit', 'open', 'closed', '', 'hypnosis_16854159-svg', '', '', '2026-02-10 14:00:19', '2026-02-10 14:00:19', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/hypnosis_16854159.svg', 0, 'attachment', 'image/svg+xml', 0),
(186, 1, '2026-02-10 14:00:19', '2026-02-10 14:00:19', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png-3', '', '', '2026-02-10 14:00:19', '2026-02-10 14:00:19', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/placeholder-2.png', 0, 'attachment', 'image/png', 0),
(187, 1, '2026-02-10 14:00:21', '2026-02-10 14:00:21', '', 'development_17928573.svg', '', 'inherit', 'open', 'closed', '', 'development_17928573-svg', '', '', '2026-02-10 14:00:21', '2026-02-10 14:00:21', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/development_17928573.svg', 0, 'attachment', 'image/svg+xml', 0),
(188, 1, '2026-02-10 14:00:21', '2026-02-10 14:00:21', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png-4', '', '', '2026-02-10 14:00:21', '2026-02-10 14:00:21', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/placeholder-3.png', 0, 'attachment', 'image/png', 0),
(189, 1, '2026-02-10 14:00:22', '2026-02-10 14:00:22', '', 'question_7002121.svg', '', 'inherit', 'open', 'closed', '', 'question_7002121-svg', '', '', '2026-02-10 14:00:22', '2026-02-10 14:00:22', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/question_7002121.svg', 0, 'attachment', 'image/svg+xml', 0),
(190, 1, '2026-02-10 14:00:23', '2026-02-10 14:00:23', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png-5', '', '', '2026-02-10 14:00:23', '2026-02-10 14:00:23', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/placeholder-4.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(191, 1, '2026-02-10 14:00:24', '2026-02-10 14:00:24', '', 'brainstorming_18789094.svg', '', 'inherit', 'open', 'closed', '', 'brainstorming_18789094-svg', '', '', '2026-02-10 14:00:24', '2026-02-10 14:00:24', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/brainstorming_18789094.svg', 0, 'attachment', 'image/svg+xml', 0),
(192, 1, '2026-02-10 14:00:24', '2026-02-10 14:00:24', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png-6', '', '', '2026-02-10 14:00:24', '2026-02-10 14:00:24', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/placeholder-5.png', 0, 'attachment', 'image/png', 0),
(193, 1, '2026-02-10 14:00:25', '2026-02-10 14:00:25', '<h2>Education</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													After Diagnosis: What Now?												</h5>\n											<p>A diagnosis is the first step. Here’s how to take control and build practical routines.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/after-diagnosis-what-now/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Neurodiversity Explained												</h5>\n											<p>ADHD is part of the neurodiversity spectrum — a natural variation in how brains process information.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/neurodiversity-explained/\">\n														Learn More													\n																																			</a>', 'test', '', 'publish', 'closed', 'closed', '', 'test', '', '', '2026-02-10 14:00:25', '2026-02-10 14:00:25', '', 0, 'https://mrarif.me/avalumcare/?elementor_library=test', 0, 'elementor_library', '', 0),
(194, 1, '2026-02-10 14:00:25', '2026-02-10 14:00:25', '<h2>Education</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													After Diagnosis: What Now?												</h5>\n											<p>A diagnosis is the first step. Here’s how to take control and build practical routines.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/after-diagnosis-what-now/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Neurodiversity Explained												</h5>\n											<p>ADHD is part of the neurodiversity spectrum — a natural variation in how brains process information.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/neurodiversity-explained/\">\n														Learn More													\n																																			</a>', 'test', '', 'inherit', 'closed', 'closed', '', '193-revision-v1', '', '', '2026-02-10 14:00:25', '2026-02-10 14:00:25', '', 193, 'https://mrarif.me/avalumcare/?p=194', 0, 'revision', '', 0),
(195, 1, '2026-02-10 14:01:36', '2026-02-10 14:01:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:01:36', '2026-02-10 14:01:36', '', 10, 'https://mrarif.me/avalumcare/?p=195', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(196, 1, '2026-02-10 14:01:36', '2026-02-10 14:01:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:01:36', '2026-02-10 14:01:36', '', 10, 'https://mrarif.me/avalumcare/?p=196', 0, 'revision', '', 0),
(197, 1, '2026-02-10 14:01:36', '2026-02-10 14:01:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Education</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:01:36', '2026-02-10 14:01:36', '', 10, 'https://mrarif.me/avalumcare/?p=197', 0, 'revision', '', 0),
(198, 1, '2026-02-10 14:03:43', '2026-02-10 14:03:43', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Education</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:03:43', '2026-02-10 14:03:43', '', 10, 'https://mrarif.me/avalumcare/?p=198', 0, 'revision', '', 0),
(199, 1, '2026-02-10 14:03:43', '2026-02-10 14:03:43', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Education</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:03:43', '2026-02-10 14:03:43', '', 10, 'https://mrarif.me/avalumcare/?p=199', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:06:54', '2026-02-10 14:06:54', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:06:54', '2026-02-10 14:06:54', '', 10, 'https://mrarif.me/avalumcare/?p=204', 0, 'revision', '', 0),
(200, 1, '2026-02-10 14:03:43', '2026-02-10 14:03:43', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:03:43', '2026-02-10 14:03:43', '', 10, 'https://mrarif.me/avalumcare/?p=200', 0, 'revision', '', 0),
(205, 1, '2026-02-10 14:07:32', '2026-02-10 14:07:32', '', 'hygiene-products_3553891', '', 'inherit', 'open', 'closed', '', 'hygiene-products_3553891', '', '', '2026-02-10 14:07:32', '2026-02-10 14:07:32', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/hygiene-products_3553891.svg', 0, 'attachment', 'image/svg+xml', 0),
(202, 1, '2026-02-10 14:06:53', '2026-02-10 14:06:53', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:06:53', '2026-02-10 14:06:53', '', 10, 'https://mrarif.me/avalumcare/?p=202', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:06:54', '2026-02-10 14:06:54', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>		Clear, practical guidance to understand adult ADHD, build routines, improve focus, and manage daily challenges confidently.		\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Education Hub												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Understanding ADHD												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:06:54', '2026-02-10 14:06:54', '', 10, 'https://mrarif.me/avalumcare/?p=203', 0, 'revision', '', 0),
(206, 1, '2026-02-10 14:08:10', '2026-02-10 14:08:10', '', 'pediatric_15192770', '', 'inherit', 'open', 'closed', '', 'pediatric_15192770', '', '', '2026-02-10 14:08:10', '2026-02-10 14:08:10', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/pediatric_15192770.svg', 0, 'attachment', 'image/svg+xml', 0),
(207, 1, '2026-02-10 14:08:16', '2026-02-10 14:08:16', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:08:16', '2026-02-10 14:08:16', '', 10, 'https://mrarif.me/avalumcare/?p=207', 0, 'revision', '', 0),
(208, 1, '2026-02-10 14:08:17', '2026-02-10 14:08:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\" data-name=\"Layer 3\"><path d=\"m31.553 23.105-12 6a1 1 0 0 0 0 1.79l1.447.723v4.382h2v-3.382l2 1v4.382a1 1 0 0 0 .445.832l.5.336a10.909 10.909 0 0 0 12.1 0l.5-.336a1 1 0 0 0 .455-.832v-4.382l5.447-2.718a1 1 0 0 0 0-1.79l-12-6a1 1 0 0 0 -.894-.005zm5.447 14.36-.059.039a9.051 9.051 0 0 1 -9.882 0l-.059-.039v-2.847l4.553 2.282a1 1 0 0 0 .894 0l4.553-2.282zm-5-2.583-9.764-4.882 9.764-4.882 9.764 4.882z\"></path><path d=\"m58 27a5.009 5.009 0 0 0 -4.9 4h-4.151a16.9 16.9 0 0 0 -4.26-10.275l4.558-4.558a5.015 5.015 0 1 0 -1.414-1.414l-4.558 4.558a16.9 16.9 0 0 0 -10.275-4.26v-4.151a5 5 0 1 0 -2 0v4.152a16.9 16.9 0 0 0 -10.275 4.26l-4.558-4.558a5.015 5.015 0 1 0 -1.414 1.414l4.558 4.558a16.9 16.9 0 0 0 -4.26 10.274h-4.151a5 5 0 1 0 0 2h4.152a16.9 16.9 0 0 0 4.26 10.275l-4.558 4.558a5.015 5.015 0 1 0 1.414 1.414l4.558-4.558a16.9 16.9 0 0 0 10.274 4.26v4.151a5 5 0 1 0 2 0v-4.151a16.9 16.9 0 0 0 10.275-4.26l4.558 4.558a5.015 5.015 0 1 0 1.414-1.414l-4.558-4.558a16.9 16.9 0 0 0 4.26-10.275h4.151a5 5 0 1 0 4.9-6zm-52 8a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm46-26a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-23-3a3 3 0 1 1 3 3 3 3 0 0 1 -3-3zm-17 9a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm0 40a3 3 0 1 1 3-3 3 3 0 0 1 -3 3zm23 3a3 3 0 1 1 -3-3 3 3 0 0 1 3 3zm17-9a3 3 0 1 1 -3 3 3 3 0 0 1 3-3zm-20-2a15 15 0 1 1 15-15 15.017 15.017 0 0 1 -15 15zm26-12a3 3 0 1 1 3-3 3 3 0 0 1 -3 3z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:08:17', '2026-02-10 14:08:17', '', 10, 'https://mrarif.me/avalumcare/?p=208', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(209, 1, '2026-02-10 14:08:17', '2026-02-10 14:08:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:08:17', '2026-02-10 14:08:17', '', 10, 'https://mrarif.me/avalumcare/?p=209', 0, 'revision', '', 0),
(210, 1, '2026-02-10 14:10:34', '2026-02-10 14:10:34', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:10:34', '2026-02-10 14:10:34', '', 10, 'https://mrarif.me/avalumcare/?p=210', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(211, 1, '2026-02-10 14:10:34', '2026-02-10 14:10:34', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													ADHD in Adult Life												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"2in\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 2000 2000\" width=\"2in\"><g id=\"Layer_x0020_1\"><path d=\"m417 879c-33-55 7-127 72-127 26 0 26 40 0 40-57 0-59 87 0 87h169c42 0 76-34 76-75 0-42-34-76-76-76-26 0-26-40 0-40 99 0 152 117 88 191h163c-64-74-11-191 88-191 26 0 26 40 0 40-94 0-109 145 2 151h227c18 0 36-3 52-9-130-73-211-218-196-375-22-8-46-8-68 0-5 50-36 95-82 116-24 11-41-25-17-36 114-53 53-239-88-239-74 0-136 54-146 126 43 26 71 73 71 124 0 26-40 26-40-1 0-39-23-75-58-92-9-3-19-4-29-4-53 0-97 39-104 91-3 37 23 78 59 94 25 11 7 47-17 36-46-21-77-66-82-116-94-36-208 30-199 157 9 69 65 123 135 128zm1097-60h-98c-11 0-20-9-20-20v-65c-25-8-49-22-69-40l-56 32c-10 6-22 2-27-7l-49-84c-6-10-2-22 7-28l56-32c-5-26-5-53 0-80l-56-32c-9-6-13-18-7-27l49-85c5-9 17-12 27-7l56 32c20-18 44-31 69-40v-65c0-11 9-20 20-20h98c11 0 20 9 20 20v64c25 9 49 23 69 41l56-32c10-6 22-3 27 7l49 84c6 10 2 22-7 28l-56 32c5 26 5 53 0 80l56 32c9 6 12 18 7 27l-49 85c-5 9-17 12-27 7l-56-32c-20 18-44 31-69 40v64c0 12-9 21-20 21zm-78-40h58v-59c0-30 39-11 92-65 7-6 17-7 25-3l51 30 28-50c-89-52-54-25-54-97s-35-45 54-97l-28-50-51 30c-26 15-30-29-102-48-9-2-15-10-15-19v-60h-57v60c0 30-39 10-93 64-6 6-16 8-24 3l-52-30-28 50c89 52 54 25 54 97s35 45-54 97l28 50 52-30c25-15 29 29 102 48 8 2 15 10 15 19v60zm29-139c-58 0-105-47-105-105s47-105 105-105 105 47 105 105-47 105-105 105zm0-170c-85 0-85 130 0 130 86 0 86-130 0-130zm-141 422c-29 18-63 27-98 27h-798c-77 0-144-47-173-115-62 122-84 274-56 400 16 74 50 130 97 164 50-53 63-208 53-264-3-17 11-40 33-36 35 3 64 18 86 42 38-66 15-83 42-95 9-4 19-2 27 4 145 117 419 195 556 40 50-56 77-22 119 13 171 141 18 194 147 318 136-101 170-305 127-471-57 3-112-7-162-27zm202 23c46 184 3 404-150 513-43 255-259 425-539 425-288 0-506-175-557-448-60-39-101-105-121-192-33-148 0-330 83-467-1-4-1-9-1-14 0-129 127-217 244-179 20-67 86-112 158-103 15-88 92-154 184-154 93 0 171 68 185 158 25-7 52-6 77 1 36-176 192-308 378-308 213 0 386 173 386 386 0 193-142 353-327 382zm-59-728c-191 0-346 155-346 346s155 346 346 346 346-155 346-346-155-346-346-346zm-131 1237c-154-145 6-194-149-321-48-40-42-42-64-18-148 168-431 98-593-20-9 44-31 67-42 90-7 15-28 16-35 1-14-25-35-41-63-46 9 72-7 233-70 291 49 256 247 413 519 412 262 0 456-153 497-389zm-509 311c-50 0-137-31-111-64 21-27 36 24 111 24 76 0 91-51 112-24 26 33-63 64-112 64z\"></path></g></svg>							\n												<h5>\n													ADHD Support Options												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:10:34', '2026-02-10 14:10:34', '', 10, 'https://mrarif.me/avalumcare/?p=211', 0, 'revision', '', 0),
(212, 1, '2026-02-10 14:10:35', '2026-02-10 14:10:35', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:10:35', '2026-02-10 14:10:35', '', 10, 'https://mrarif.me/avalumcare/?p=212', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(213, 1, '2026-02-10 14:11:17', '2026-02-10 14:11:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:11:17', '2026-02-10 14:11:17', '', 10, 'https://mrarif.me/avalumcare/?p=213', 0, 'revision', '', 0),
(214, 1, '2026-02-10 14:11:18', '2026-02-10 14:11:18', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:11:18', '2026-02-10 14:11:18', '', 10, 'https://mrarif.me/avalumcare/?p=214', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:11:18', '2026-02-10 14:11:18', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:11:18', '2026-02-10 14:11:18', '', 10, 'https://mrarif.me/avalumcare/?p=215', 0, 'revision', '', 0),
(216, 1, '2026-02-10 14:11:44', '2026-02-10 14:11:44', '', 'nutrition-plan_12640011 (1)', '', 'inherit', 'open', 'closed', '', 'nutrition-plan_12640011-1', '', '', '2026-02-10 14:11:44', '2026-02-10 14:11:44', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/nutrition-plan_12640011-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(217, 1, '2026-02-10 14:12:04', '2026-02-10 14:12:04', '', 'transportation_18699019', '', 'inherit', 'open', 'closed', '', 'transportation_18699019', '', '', '2026-02-10 14:12:04', '2026-02-10 14:12:04', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/transportation_18699019.svg', 0, 'attachment', 'image/svg+xml', 0),
(218, 1, '2026-02-10 14:13:16', '2026-02-10 14:13:16', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:13:16', '2026-02-10 14:13:16', '', 10, 'https://mrarif.me/avalumcare/?p=218', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:13:16', '2026-02-10 14:13:16', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"line\" viewBox=\"0 0 64 64\"><path d=\"M58.01222,36.16715c-.02053-.04008-4.059-5.85638-4.059-5.85638a2.72682,2.72682,0,0,1-.27079-1.19708V21.4678C53.4744,2.81059,25.85275-.36658,14.94958,9.39144,3.40181,18.76355,2.6521,37.37364,13.10679,48.969c1.51707,1.57236.94614,5.0807,1.044,7.04857a1.00067,1.00067,0,0,0,.89256.99521l27.28315,2.97975a1.008,1.008,0,0,0,1.10959-.99527v-4.7697a1.28254,1.28254,0,0,1,1.28067-1.28066h5.39739a3.57184,3.57184,0,0,0,3.56828-3.56828v-9.825a.27334.27334,0,0,1,.27666-.27666h2.14488A2.1529,2.1529,0,0,0,58.01222,36.16715Zm-1.789,1.04116a.13294.13294,0,0,1-.11927.06647H53.95905a2.28179,2.28179,0,0,0-2.27881,2.27881v9.825a1.56834,1.56834,0,0,1-1.56613,1.56613H44.71672a3.286,3.286,0,0,0-3.28281,3.28281v3.65333l-25.281-2.76077c.01784-2.42643.27135-5.4861-1.49293-7.41322C4.8758,36.9251,5.506,19.53427,16.30651,10.86855c9.67015-8.6246,35.06835-6.251,35.37391,10.59919l-.00018,7.64595a4.572,4.572,0,0,0,.5895,2.28321l3.971,5.71364A.12708.12708,0,0,1,56.2232,37.20831Z\"></path><path d=\"M23.744,11.94685H22.4927A3.508,3.508,0,0,0,18.989,15.45061v7.508a1.00126,1.00126,0,0,0,2.00214-.00007V18.95436h4.25456v4.0043a1.00127,1.00127,0,0,0,2.00215-.00007v-7.508A3.508,3.508,0,0,0,23.744,11.94685Zm1.50161,5.00537H20.99109V15.45061A1.50325,1.50325,0,0,1,22.4927,13.949H23.744a1.50325,1.50325,0,0,1,1.50161,1.50161Z\"></path><path d=\"M38.00934,11.94685H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00108V22.95866a1.00081,1.00081,0,0,0,1.00107,1.00107h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V16.95222A5.01126,5.01126,0,0,0,38.00934,11.94685Zm3.00321,7.00751a3.00649,3.00649,0,0,1-3.00321,3.00322H36.758V13.949h1.25135a3.0065,3.0065,0,0,1,3.00321,3.00322Z\"></path><path d=\"M38.00934,27.964H35.75692a1.00081,1.00081,0,0,0-1.00107,1.00107V38.97582a1.0005,1.0005,0,0,0,1.00107,1.00108h2.25242a5.01126,5.01126,0,0,0,5.00536-5.00537V32.96939A5.01126,5.01126,0,0,0,38.00934,27.964Zm3.00321,7.00751a3.0065,3.0065,0,0,1-3.00321,3.00322H36.758V29.96617h1.25135a3.00649,3.00649,0,0,1,3.00321,3.00322Z\"></path><path d=\"M26.24673,27.964a1.00082,1.00082,0,0,0-1.00108,1.00107v4.0043H20.99109v-4.0043a1.00127,1.00127,0,0,0-2.00214.00007V38.97582a1.00126,1.00126,0,0,0,2.00214-.00006V34.97153h4.25456v4.00429a1.00127,1.00127,0,0,0,2.00215-.00006V28.96509A1.00081,1.00081,0,0,0,26.24673,27.964Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m427 461.7c0-.7-.1-1.5-.2-2.2-.2-2.5-.4-5-.7-7.5 0-.4-.1-.8-.1-1.2 0-.1-.1-.1-.1-.2-4.6-37.9-21.5-73-48.9-100.3-12.5-12.5-26.7-22.7-42.1-30.7l4-4.6c1.2-1.4 1.6-3.2 1.2-5s-1.7-3.2-3.4-3.9l-34.7-13.8c-1.9-.8-4.2-.4-5.8 1l-2.6 2.3-3.5-16.9c30.6-12.8 51.8-42 54.5-75.2 15.9-2.3 28.2-14.7 28.2-29.6 0-7.4-3.1-14.4-8.4-19.8 3.4-2.6 6.1-6.3 7.3-10.6 12.8-43.7-2.5-91.7-38.1-119.4-43.4-33.9-105.9-30.3-145.7 8.3-11.9 3.8-32.1 13.2-43.7 34.2-13.4 24.2-10.9 55.9 6.2 82.4-9.1 5.5-14.7 14.6-14.7 24.8 0 16 14 29.1 31.6 29.9 2.7 33.4 24.2 62.7 55.4 75.2l-3.3 15.6-1.6-1.4c-1.6-1.4-3.8-1.8-5.7-1l-34.7 13.8c-1.7.7-2.9 2.1-3.4 3.9-.4 1.8 0 3.6 1.2 5l3.2 3.8c-50.5 25.8-85.7 75.7-92.5 132.1-.8 6.9-1.2 13.8-1.2 20.6v34.2c0 3.1 2.5 5.6 5.6 5.6h331.5c3.1 0 5.6-2.5 5.6-5.6v-34.2c-.1-3.2-.2-6.4-.4-9.6zm-125.7-157.8 24.2 9.7-3.4 4-18.1 21.3-17.5 20.5-19.1-20.6-2.2-2.3 8.9-8.1zm-39.8 20.8-4.4 4-27-24.3-1-.8-.2-.2 4.3-20.5c.5.1.9.2 1.4.3.8.2 1.5.4 2.3.5 13.6 3 28 2.7 41.5-.8.4-.1.9-.2 1.3-.3l4.5 21.7zm83.7-132.5v-34.9c.3.1.6.1.9.2.5.2 1.1.3 1.6.4.6.1 1.3.3 1.9.3.5.1 1 .1 1.6.1.4 0 .8.1 1.1.1 5.9 3.6 9.5 9.4 9.5 15.5.1 8.8-7 16.2-16.6 18.3zm-178.3.5c-11.3-.9-20.1-9-20.1-18.8 0-6.6 4-12.6 10.5-16 .6.5 1.2.9 1.9 1.2.1.1.2.1.4.2.7.4 1.4.7 2.2.9.2.1.4.1.7.2.9.2 1.8.4 2.7.5h1 .3.6v31.8zm2.4-45c-.2.3-.3.5-.3.5-.2.2-.4.3-.6.5-.7.7-1.8 1.1-2.8 1.1-.6 0-1.5-.3-2.1-1.2 0 0 0-.1-.1-.1-.1-.2-.3-.4-.4-.6-17.8-24-21.4-53.7-9.2-75.8 10.2-18.4 28.5-26.3 38.5-29.4.9-.3 1.6-.7 2.3-1.4 36-35.5 92.8-39.1 132.4-8.4 32 24.9 45.8 68.1 34.3 107.4-1.1 3.7-4.4 6.4-7.7 6.8-.2 0-.4 0-.6 0-1.5.2-3.7 0-6.1-1.6l-.5-.3c-.2-.1-.4-.3-.6-.4l-1-.7c-.7-.5-1.5-1-2.1-1.3-3.9-2.5-8-4.6-12.7-6.5-16.6-6.8-30.7-6.2-43.2-5.8-10.9.4-21.3.8-32.6-3.5-14.5-5.6-26.4-17-36.6-34.7-.9-1.5-2.4-2.6-4.2-2.8s-3.5.4-4.7 1.7c-7.4 7.7-14.5 16.3-21 25.6-6.9 9.9-13 20.1-18 30.3-.2.3-.3.4-.4.6zm8.7 50.4v-43.4c.4-.5.7-1.1 1-1.7.1-.2.3-.4.4-.7 4.8-9.8 10.6-19.6 17.3-29.1 4.7-6.7 9.8-13 15-18.9 10.6 16.3 23.5 27.4 38.3 33.1 13.5 5.1 25.4 4.7 37 4.2 3.1-.1 6.2-.3 9.2-.3 9.2-.1 18.5.8 29.3 5.2 1.8.8 3.5 1.6 5.2 2.4.5.2 1 .5 1.4.8.6.3 1.2.7 1.8 1v47.4c-.7 32.2-21.5 61.1-51.9 71.8-.2.1-.5.2-.6.3-.2.1-.5.2-1.1.4-15.2 5.1-32.3 5.3-48.2.2-.2-.1-.5-.1-.7-.2s-.5-.2-.7-.3c-30.9-10.5-52.1-39.6-52.7-72.2zm34.9 105.8 31.1 27.9 5.2 4.7-19.2 20.6-2.2 2.3-39.2-45.9zm-65 196h-52.1v-28.6c0-2.9.1-5.8.3-8.7 0-.8.1-1.6.2-2.4.1-1.1.2-2.2.3-3.3h45.2c3.5 0 6.2 2.7 6.2 6.1v36.9zm205.1-36.8v36.8h-194v-36.8c0-9.5-7.8-17.3-17.3-17.3h-43.8c8.2-51 41.2-95.7 87.9-118.5l19.4 22.7 18.2 21.3c1 1.2 2.5 1.9 4.1 2 .7 0 1.5-.2 2.3-.5.5-.2.9-.5 1.3-.9.2-.2.5-.2.7-.4l18.9-20.3 6.5-7 25.3 27.2c1.1 1.2 2.7 1.8 4.2 1.8 1.6 0 3.1-.7 4.1-2l36.9-43.3c15.3 7.7 29.2 17.7 41.5 30 24.2 24.1 39.6 54.6 44.9 87.7h-43.9c-9.5.3-17.2 8-17.2 17.5zm63.2 36.8h-52.1v-36.8c0-3.4 2.7-6.1 6.2-6.1h45.2c.1 1.1.2 2.3.2 3.4.1 1.2.2 2.3.2 3.5.1 2.5.2 5 .2 7.5v28.5zm-171.8-247.7c-7.4 0-14.8-1.3-21.5-3.9-2.9-1.1-4.3-4.4-3.2-7.2 1.1-2.9 4.4-4.3 7.2-3.2 15.5 6.1 34.9 3.3 49.4-7 12.1-8.6 18.6-20.8 18-34.3-.7-11.6-7.8-23.3-17.7-29.2-5.4-3.2-14-6.1-23.9-1.3-6.5 3.2-10.5 10.8-9.6 18 1.1 4.2 2.6 5.2 5 5.4.8-.5 1.9-2.3 2.6-3.5 2.1-3.4 6.5-10.5 15.5-7.6 6.4 2.7 10.6 8.3 12 15.5 1.5 7.8-.7 15.7-5.6 20.6-14.6 14.6-36.2 15.2-51.5 1.6-18.1-15.1-21.5-41.9-8.1-63.7 1.6-2.6 5-3.4 7.7-1.8 2.6 1.6 3.4 5 1.8 7.7-10.5 17-8 37.8 5.9 49.4 11 9.8 26 9.3 36.4-1.1 2.3-2.3 3.3-6.6 2.5-10.6-.3-1.6-1.4-5.7-5-7.2-.4.3-1.5 2-2.1 3.1-2 3.2-4.7 7.5-10.2 8.6-.4.1-.7.1-1.1.1-8.8 0-14.4-4.8-16.7-14.1 0-.2-.1-.4-.1-.6-1.7-12.1 4.8-24.3 15.8-29.8 11.4-5.4 23.6-4.7 34.5 1.8 13.1 7.8 22.2 22.8 23.1 38.2.7 17.3-7.6 33.2-22.7 44-11.3 7.9-25 12.1-38.4 12.1z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:13:16', '2026-02-10 14:13:16', '', 10, 'https://mrarif.me/avalumcare/?p=219', 0, 'revision', '', 0),
(220, 1, '2026-02-10 14:13:17', '2026-02-10 14:13:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:13:17', '2026-02-10 14:13:17', '', 10, 'https://mrarif.me/avalumcare/?p=220', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(221, 1, '2026-02-10 14:13:59', '2026-02-10 14:13:59', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:13:59', '2026-02-10 14:13:59', '', 10, 'https://mrarif.me/avalumcare/?p=221', 0, 'revision', '', 0),
(222, 1, '2026-02-10 14:13:59', '2026-02-10 14:13:59', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:13:59', '2026-02-10 14:13:59', '', 10, 'https://mrarif.me/avalumcare/?p=222', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(223, 1, '2026-02-10 14:13:59', '2026-02-10 14:13:59', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:13:59', '2026-02-10 14:13:59', '', 10, 'https://mrarif.me/avalumcare/?p=223', 0, 'revision', '', 0),
(224, 1, '2026-02-10 14:14:38', '2026-02-10 14:14:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:14:38', '2026-02-10 14:14:38', '', 10, 'https://mrarif.me/avalumcare/?p=224', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(225, 1, '2026-02-10 14:14:38', '2026-02-10 14:14:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>The Education Hub is your central resource for learning about ADHD in adults. Clear, practical, and ADHD-friendly guidance for daily life.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:14:38', '2026-02-10 14:14:38', '', 10, 'https://mrarif.me/avalumcare/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-02-10 14:14:38', '2026-02-10 14:14:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:14:38', '2026-02-10 14:14:38', '', 10, 'https://mrarif.me/avalumcare/?p=226', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:17:10', '2026-02-10 14:17:10', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:17:10', '2026-02-10 14:17:10', '', 10, 'https://mrarif.me/avalumcare/?p=227', 0, 'revision', '', 0),
(228, 1, '2026-02-10 14:17:10', '2026-02-10 14:17:10', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Support comes in many forms. Understanding what’s available helps you choose what works best.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:17:10', '2026-02-10 14:17:10', '', 10, 'https://mrarif.me/avalumcare/?p=228', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:17:11', '2026-02-10 14:17:11', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:17:11', '2026-02-10 14:17:11', '', 10, 'https://mrarif.me/avalumcare/?p=229', 0, 'revision', '', 0),
(230, 1, '2026-02-10 14:18:33', '2026-02-10 14:18:33', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:18:33', '2026-02-10 14:18:33', '', 10, 'https://mrarif.me/avalumcare/?p=230', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:18:33', '2026-02-10 14:18:33', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>ADHD affects attention, executive function, motivation, and emotional regulation. It’s more than being distracted.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:18:33', '2026-02-10 14:18:33', '', 10, 'https://mrarif.me/avalumcare/?p=231', 0, 'revision', '', 0),
(232, 1, '2026-02-10 14:18:34', '2026-02-10 14:18:34', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:18:34', '2026-02-10 14:18:34', '', 10, 'https://mrarif.me/avalumcare/?p=232', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(233, 1, '2026-02-10 14:20:49', '2026-02-10 14:20:49', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:20:49', '2026-02-10 14:20:49', '', 10, 'https://mrarif.me/avalumcare/?p=233', 0, 'revision', '', 0),
(234, 1, '2026-02-10 14:20:49', '2026-02-10 14:20:49', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:20:49', '2026-02-10 14:20:49', '', 10, 'https://mrarif.me/avalumcare/?p=234', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(235, 1, '2026-02-10 14:20:50', '2026-02-10 14:20:50', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:20:50', '2026-02-10 14:20:50', '', 10, 'https://mrarif.me/avalumcare/?p=235', 0, 'revision', '', 0),
(236, 1, '2026-02-10 14:21:07', '2026-02-10 14:21:07', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:21:07', '2026-02-10 14:21:07', '', 10, 'https://mrarif.me/avalumcare/?p=236', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(237, 1, '2026-02-10 14:21:08', '2026-02-10 14:21:08', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:21:08', '2026-02-10 14:21:08', '', 10, 'https://mrarif.me/avalumcare/?p=237', 0, 'revision', '', 0),
(238, 1, '2026-02-10 14:21:08', '2026-02-10 14:21:08', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:21:08', '2026-02-10 14:21:08', '', 10, 'https://mrarif.me/avalumcare/?p=238', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(239, 1, '2026-02-10 14:21:40', '2026-02-10 14:21:40', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:21:40', '2026-02-10 14:21:40', '', 10, 'https://mrarif.me/avalumcare/?p=239', 0, 'revision', '', 0),
(240, 1, '2026-02-10 14:21:40', '2026-02-10 14:21:40', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:21:40', '2026-02-10 14:21:40', '', 10, 'https://mrarif.me/avalumcare/?p=240', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(241, 1, '2026-02-10 14:21:40', '2026-02-10 14:21:40', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:21:40', '2026-02-10 14:21:40', '', 10, 'https://mrarif.me/avalumcare/?p=241', 0, 'revision', '', 0),
(242, 1, '2026-02-10 14:24:55', '2026-02-10 14:24:55', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:24:55', '2026-02-10 14:24:55', '', 10, 'https://mrarif.me/avalumcare/?p=242', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(243, 1, '2026-02-10 14:24:55', '2026-02-10 14:24:55', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning.										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:24:55', '2026-02-10 14:24:55', '', 10, 'https://mrarif.me/avalumcare/?p=243', 0, 'revision', '', 0),
(244, 1, '2026-02-10 14:24:56', '2026-02-10 14:24:56', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:24:56', '2026-02-10 14:24:56', '', 10, 'https://mrarif.me/avalumcare/?p=244', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(245, 1, '2026-02-10 14:26:36', '2026-02-10 14:26:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:26:36', '2026-02-10 14:26:36', '', 10, 'https://mrarif.me/avalumcare/?p=245', 0, 'revision', '', 0),
(246, 1, '2026-02-10 14:26:36', '2026-02-10 14:26:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>ADHD affects work, relationships, and daily routines. Understanding its effects is the first step toward practical strategies.</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:26:36', '2026-02-10 14:26:36', '', 10, 'https://mrarif.me/avalumcare/?p=246', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:27:53', '2026-02-10 14:27:53', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:27:53', '2026-02-10 14:27:53', '', 10, 'https://mrarif.me/avalumcare/?p=250', 0, 'revision', '', 0),
(247, 1, '2026-02-10 14:26:36', '2026-02-10 14:26:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:26:36', '2026-02-10 14:26:36', '', 10, 'https://mrarif.me/avalumcare/?p=247', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:27:53', '2026-02-10 14:27:53', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:27:53', '2026-02-10 14:27:53', '', 10, 'https://mrarif.me/avalumcare/?p=248', 0, 'revision', '', 0),
(249, 1, '2026-02-10 14:27:53', '2026-02-10 14:27:53', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/education-hub/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/understanding-adhd/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-in-adult-life/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://norisagbonwan-xdfyp.wpcomstaging.com/adhd-support-options/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:27:53', '2026-02-10 14:27:53', '', 10, 'https://mrarif.me/avalumcare/?p=249', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:39:38', '2026-02-10 14:39:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:39:38', '2026-02-10 14:39:38', '', 10, 'https://mrarif.me/avalumcare/?p=254', 0, 'revision', '', 0),
(252, 1, '2026-02-10 14:39:37', '2026-02-10 14:39:37', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:39:37', '2026-02-10 14:39:37', '', 10, 'https://mrarif.me/avalumcare/?p=252', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(253, 1, '2026-02-10 14:39:37', '2026-02-10 14:39:37', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:39:37', '2026-02-10 14:39:37', '', 10, 'https://mrarif.me/avalumcare/?p=253', 0, 'revision', '', 0),
(255, 1, '2026-02-10 14:40:19', '2026-02-10 14:40:19', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:40:19', '2026-02-10 14:40:19', '', 10, 'https://mrarif.me/avalumcare/?p=255', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:40:20', '2026-02-10 14:40:20', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:40:20', '2026-02-10 14:40:20', '', 10, 'https://mrarif.me/avalumcare/?p=256', 0, 'revision', '', 0),
(257, 1, '2026-02-10 14:40:21', '2026-02-10 14:40:21', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:40:21', '2026-02-10 14:40:21', '', 10, 'https://mrarif.me/avalumcare/?p=257', 0, 'revision', '', 0),
(258, 1, '2026-02-10 14:42:10', '2026-02-10 14:42:10', '', 'Resources', '', 'inherit', 'open', 'closed', '', 'resources-2', '', '', '2026-02-10 14:42:10', '2026-02-10 14:42:10', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg', 0, 'attachment', 'image/jpeg', 0),
(259, 1, '2026-02-10 14:42:43', '2026-02-10 14:42:43', '', 'Resources (2)', '', 'inherit', 'open', 'closed', '', 'resources-2-2', '', '', '2026-02-10 14:42:43', '2026-02-10 14:42:43', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:44:48', '2026-02-10 14:44:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:44:48', '2026-02-10 14:44:48', '', 10, 'https://mrarif.me/avalumcare/?p=260', 0, 'revision', '', 0),
(261, 1, '2026-02-10 14:44:48', '2026-02-10 14:44:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:44:48', '2026-02-10 14:44:48', '', 10, 'https://mrarif.me/avalumcare/?p=261', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:44:48', '2026-02-10 14:44:48', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"665\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg 665w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-200x300.jpeg 200w\" sizes=\"(max-width: 665px) 100vw, 665px\" />																										<img width=\"649\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg 649w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2-195x300.jpeg 195w\" sizes=\"(max-width: 649px) 100vw, 649px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:44:48', '2026-02-10 14:44:48', '', 10, 'https://mrarif.me/avalumcare/?p=262', 0, 'revision', '', 0),
(263, 1, '2026-02-10 14:45:27', '2026-02-10 14:45:27', '', 'service area (1)', '', 'inherit', 'open', 'closed', '', 'service-area-1', '', '', '2026-02-10 14:45:27', '2026-02-10 14:45:27', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(264, 1, '2026-02-10 14:46:23', '2026-02-10 14:46:23', '', 'about (2)', '', 'inherit', 'open', 'closed', '', 'about-2', '', '', '2026-02-10 14:46:23', '2026-02-10 14:46:23', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(265, 1, '2026-02-10 14:46:36', '2026-02-10 14:46:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"665\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg 665w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-200x300.jpeg 200w\" sizes=\"(max-width: 665px) 100vw, 665px\" />																										<img width=\"649\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg 649w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2-195x300.jpeg 195w\" sizes=\"(max-width: 649px) 100vw, 649px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:46:36', '2026-02-10 14:46:36', '', 10, 'https://mrarif.me/avalumcare/?p=265', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:46:36', '2026-02-10 14:46:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"665\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources.jpeg 665w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-200x300.jpeg 200w\" sizes=\"(max-width: 665px) 100vw, 665px\" />																										<img width=\"649\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2.jpeg 649w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Resources-2-195x300.jpeg 195w\" sizes=\"(max-width: 649px) 100vw, 649px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:46:36', '2026-02-10 14:46:36', '', 10, 'https://mrarif.me/avalumcare/?p=266', 0, 'revision', '', 0),
(267, 1, '2026-02-10 14:46:36', '2026-02-10 14:46:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:46:36', '2026-02-10 14:46:36', '', 10, 'https://mrarif.me/avalumcare/?p=267', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:50:03', '2026-02-10 14:50:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:50:03', '2026-02-10 14:50:03', '', 10, 'https://mrarif.me/avalumcare/?p=268', 0, 'revision', '', 0),
(269, 1, '2026-02-10 14:50:04', '2026-02-10 14:50:04', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:50:04', '2026-02-10 14:50:04', '', 10, 'https://mrarif.me/avalumcare/?p=269', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 14:50:05', '2026-02-10 14:50:05', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 14:50:05', '2026-02-10 14:50:05', '', 10, 'https://mrarif.me/avalumcare/?p=270', 0, 'revision', '', 0),
(271, 1, '2026-02-10 15:03:10', '2026-02-10 15:03:10', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:03:10', '2026-02-10 15:03:10', '', 10, 'https://mrarif.me/avalumcare/?p=271', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:03:10', '2026-02-10 15:03:10', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n					<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:03:10', '2026-02-10 15:03:10', '', 10, 'https://mrarif.me/avalumcare/?p=272', 0, 'revision', '', 0),
(273, 1, '2026-02-10 15:03:11', '2026-02-10 15:03:11', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:03:11', '2026-02-10 15:03:11', '', 10, 'https://mrarif.me/avalumcare/?p=273', 0, 'revision', '', 0),
(274, 1, '2026-02-10 15:05:24', '2026-02-10 15:05:24', '', 'phone-call_3779208.svg', '', 'inherit', 'open', 'closed', '', 'phone-call_3779208-svg', '', '', '2026-02-10 15:05:24', '2026-02-10 15:05:24', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/phone-call_3779208-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(275, 1, '2026-02-10 15:05:24', '2026-02-10 15:05:24', '', 'email_12259156.svg', '', 'inherit', 'open', 'closed', '', 'email_12259156-svg', '', '', '2026-02-10 15:05:24', '2026-02-10 15:05:24', '', 0, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/email_12259156-1.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:05:25', '2026-02-10 15:05:25', '<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Form', '', 'publish', 'closed', 'closed', '', 'form', '', '', '2026-02-10 15:05:26', '2026-02-10 15:05:26', '', 0, 'https://mrarif.me/avalumcare/?elementor_library=form', 0, 'elementor_library', '', 0),
(277, 1, '2026-02-10 15:05:26', '2026-02-10 15:05:26', '<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Form', '', 'inherit', 'closed', 'closed', '', '276-revision-v1', '', '', '2026-02-10 15:05:26', '2026-02-10 15:05:26', '', 276, 'https://mrarif.me/avalumcare/?p=277', 0, 'revision', '', 0),
(278, 1, '2026-02-10 15:07:00', '2026-02-10 15:07:00', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:07:00', '2026-02-10 15:07:00', '', 10, 'https://mrarif.me/avalumcare/?p=278', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:07:00', '2026-02-10 15:07:00', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:07:00', '2026-02-10 15:07:00', '', 10, 'https://mrarif.me/avalumcare/?p=279', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:07:00', '2026-02-10 15:07:00', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:07:00', '2026-02-10 15:07:00', '', 10, 'https://mrarif.me/avalumcare/?p=280', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:08:38', '2026-02-10 15:08:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:08:38', '2026-02-10 15:08:38', '', 10, 'https://mrarif.me/avalumcare/?p=281', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:08:38', '2026-02-10 15:08:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:08:38', '2026-02-10 15:08:38', '', 10, 'https://mrarif.me/avalumcare/?p=282', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:08:39', '2026-02-10 15:08:39', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:08:39', '2026-02-10 15:08:39', '', 10, 'https://mrarif.me/avalumcare/?p=283', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:11:29', '2026-02-10 15:11:29', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:11:29', '2026-02-10 15:11:29', '', 10, 'https://mrarif.me/avalumcare/?p=284', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:11:29', '2026-02-10 15:11:29', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Get in Touch</h2>		We are here to answer your questions and help you find the right care solution for yourself or your loved one.					\n				<a href=\"tel:9196709097\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:9196709097\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(919) 670-9097					</p>\n				<a href=\"mailto:essivi@angelsatyourdoor.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:essivi@angelsatyourdoor.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						essivi@angelsatyourdoor.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:11:29', '2026-02-10 15:11:29', '', 10, 'https://mrarif.me/avalumcare/?p=285', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:11:30', '2026-02-10 15:11:30', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:11:30', '2026-02-10 15:11:30', '', 10, 'https://mrarif.me/avalumcare/?p=286', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:18:44', '2026-02-10 15:18:44', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:18:44', '2026-02-10 15:18:44', '', 10, 'https://mrarif.me/avalumcare/?p=287', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:18:44', '2026-02-10 15:18:44', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:18:44', '2026-02-10 15:18:44', '', 10, 'https://mrarif.me/avalumcare/?p=288', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:18:45', '2026-02-10 15:18:45', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:18:45', '2026-02-10 15:18:45', '', 10, 'https://mrarif.me/avalumcare/?p=289', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:19:16', '2026-02-10 15:19:16', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:19:16', '2026-02-10 15:19:16', '', 10, 'https://mrarif.me/avalumcare/?p=290', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(291, 1, '2026-02-10 15:19:16', '2026-02-10 15:19:16', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:19:16', '2026-02-10 15:19:16', '', 10, 'https://mrarif.me/avalumcare/?p=291', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(292, 1, '2026-02-10 15:19:16', '2026-02-10 15:19:16', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:19:16', '2026-02-10 15:19:16', '', 10, 'https://mrarif.me/avalumcare/?p=292', 0, 'revision', '', 0),
(293, 1, '2026-02-10 15:22:16', '2026-02-10 15:22:16', '<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/avalumcare/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.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\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/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										Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/resources/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Resources\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"USA\"\n					aria-label=\"USA\"\n			></iframe>\n							<p>© 2026 All Rights Reserved</p>', 'Elementor Footer #293', '', 'publish', 'closed', 'closed', '', 'elementor-footer-293', '', '', '2026-02-10 15:33:08', '2026-02-10 15:33:08', '', 0, 'https://mrarif.me/avalumcare/?post_type=elementor_library&#038;p=293', 0, 'elementor_library', '', 0),
(294, 1, '2026-02-10 15:22:16', '2026-02-10 15:22:16', '', 'Elementor Footer #293', '', 'inherit', 'closed', 'closed', '', '293-revision-v1', '', '', '2026-02-10 15:22:16', '2026-02-10 15:22:16', '', 293, 'https://mrarif.me/avalumcare/?p=294', 0, 'revision', '', 0),
(295, 1, '2026-02-10 15:24:52', '2026-02-10 15:24:52', '<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'Elementor Footer #293', '', 'inherit', 'closed', 'closed', '', '293-revision-v1', '', '', '2026-02-10 15:24:52', '2026-02-10 15:24:52', '', 293, 'https://mrarif.me/avalumcare/?p=295', 0, 'revision', '', 0),
(302, 1, '2026-02-10 15:38:33', '2026-02-10 15:38:33', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 15:38:33', '2026-02-10 15:38:33', '', 70, 'https://mrarif.me/avalumcare/?p=302', 0, 'revision', '', 0),
(297, 1, '2026-02-10 15:28:09', '2026-02-10 15:28:09', '<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />																<h2>Add Your Heading Text Here</h2>', 'Elementor Footer #293', '', 'inherit', 'closed', 'closed', '', '293-revision-v1', '', '', '2026-02-10 15:28:09', '2026-02-10 15:28:09', '', 293, 'https://mrarif.me/avalumcare/?p=297', 0, 'revision', '', 0),
(298, 1, '2026-02-10 15:32:45', '2026-02-10 15:32:45', '<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/avalumcare/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.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\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/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										Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/resources/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Resources\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"USA\"\n					aria-label=\"USA\"\n			></iframe>\n							<p>© 2026 All Rights Reserved</p>', 'Elementor Footer #293', '', 'inherit', 'closed', 'closed', '', '293-revision-v1', '', '', '2026-02-10 15:32:45', '2026-02-10 15:32:45', '', 293, 'https://mrarif.me/avalumcare/?p=298', 0, 'revision', '', 0),
(299, 1, '2026-02-10 15:33:08', '2026-02-10 15:33:08', '<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />																<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/avalumcare/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.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\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/about-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/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										Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/resources/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Resources\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/avalumcare/contact/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"USA\"\n					aria-label=\"USA\"\n			></iframe>\n							<p>© 2026 All Rights Reserved</p>', 'Elementor Footer #293', '', 'inherit', 'closed', 'closed', '', '293-revision-v1', '', '', '2026-02-10 15:33:08', '2026-02-10 15:33:08', '', 293, 'https://mrarif.me/avalumcare/?p=299', 0, 'revision', '', 0),
(300, 1, '2026-02-10 15:35:08', '2026-02-10 15:35:08', '', '2343 (1).jpg', '', 'inherit', 'open', 'closed', '', '2343-1-jpg', '', '', '2026-02-10 15:35:08', '2026-02-10 15:35:08', '', 70, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/2343-1.jpg.jpeg', 0, 'attachment', 'image/jpeg', 0),
(301, 1, '2026-02-10 15:37:04', '2026-02-10 15:37:04', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 15:37:04', '2026-02-10 15:37:04', '', 70, 'https://mrarif.me/avalumcare/?p=301', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(303, 1, '2026-02-10 15:39:04', '2026-02-10 15:39:04', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 15:39:04', '2026-02-10 15:39:04', '', 70, 'https://mrarif.me/avalumcare/?p=303', 0, 'revision', '', 0),
(304, 1, '2026-02-10 15:40:52', '2026-02-10 15:40:52', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:40:52', '2026-02-10 15:40:52', '', 10, 'https://mrarif.me/avalumcare/?p=304', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(305, 1, '2026-02-10 15:40:52', '2026-02-10 15:40:52', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:40:52', '2026-02-10 15:40:52', '', 10, 'https://mrarif.me/avalumcare/?p=305', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(306, 1, '2026-02-10 15:40:52', '2026-02-10 15:40:52', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:40:52', '2026-02-10 15:40:52', '', 10, 'https://mrarif.me/avalumcare/?p=306', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:41:28', '2026-02-10 15:41:28', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:41:28', '2026-02-10 15:41:28', '', 10, 'https://mrarif.me/avalumcare/?p=307', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(308, 1, '2026-02-10 15:41:28', '2026-02-10 15:41:28', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:41:28', '2026-02-10 15:41:28', '', 10, 'https://mrarif.me/avalumcare/?p=308', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(309, 1, '2026-02-10 15:41:28', '2026-02-10 15:41:28', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:41:28', '2026-02-10 15:41:28', '', 10, 'https://mrarif.me/avalumcare/?p=309', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(310, 1, '2026-02-10 15:42:41', '2026-02-10 15:42:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:42:41', '2026-02-10 15:42:41', '', 10, 'https://mrarif.me/avalumcare/?p=310', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(311, 1, '2026-02-10 15:42:41', '2026-02-10 15:42:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:42:41', '2026-02-10 15:42:41', '', 10, 'https://mrarif.me/avalumcare/?p=311', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:42:42', '2026-02-10 15:42:42', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:42:42', '2026-02-10 15:42:42', '', 10, 'https://mrarif.me/avalumcare/?p=312', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(313, 1, '2026-02-10 15:43:17', '2026-02-10 15:43:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:43:17', '2026-02-10 15:43:17', '', 10, 'https://mrarif.me/avalumcare/?p=313', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(314, 1, '2026-02-10 15:43:17', '2026-02-10 15:43:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"#\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:43:17', '2026-02-10 15:43:17', '', 10, 'https://mrarif.me/avalumcare/?p=314', 0, 'revision', '', 0),
(423, 1, '2026-02-11 06:57:23', '2026-02-11 06:57:23', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:57:23', '2026-02-11 06:57:23', '', 10, 'https://mrarif.me/avalumcare/?p=423', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:43:17', '2026-02-10 15:43:17', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:43:17', '2026-02-10 15:43:17', '', 10, 'https://mrarif.me/avalumcare/?p=315', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:45:13', '2026-02-10 15:45:13', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:45:13', '2026-02-10 15:45:13', '', 10, 'https://mrarif.me/avalumcare/?p=316', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:45:14', '2026-02-10 15:45:14', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:45:14', '2026-02-10 15:45:14', '', 10, 'https://mrarif.me/avalumcare/?p=317', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-10 15:45:14', '2026-02-10 15:45:14', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-10 15:45:14', '2026-02-10 15:45:14', '', 10, 'https://mrarif.me/avalumcare/?p=318', 0, 'revision', '', 0),
(319, 1, '2026-02-10 15:47:25', '2026-02-10 15:47:25', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-10 15:47:25', '2026-02-10 15:47:25', '', 70, 'https://mrarif.me/avalumcare/?p=319', 0, 'revision', '', 0),
(320, 1, '2026-02-11 06:05:41', '2026-02-11 06:05:41', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Avalum Care caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		<p>Mobility isn’t just a matter of safety—it’s a matter of freedom. Avalum Care caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Hygiene</h2>		Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:			<h6>Bathing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bed baths\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Shower and tub assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stand-by assistance\n									</li>\n						</ul>\n							<h6>Personal Hygiene</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Grooming\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Dressing\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Oral care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bathroom and incontinence assistance\n									</li>\n						</ul>', 'Personal care', '', 'publish', 'closed', 'closed', '', 'personal-care', '', '', '2026-02-11 08:14:51', '2026-02-11 08:14:51', '', 0, 'https://mrarif.me/avalumcare/?page_id=320', 0, 'page', '', 0),
(321, 1, '2026-02-11 06:05:41', '2026-02-11 06:05:41', '', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 06:05:41', '2026-02-11 06:05:41', '', 320, 'https://mrarif.me/avalumcare/?p=321', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:06:15', '2026-02-11 06:06:15', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meal preparation</h2>		<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special dietary needs. Our Home Care Meal Preparation Service is designed to provide fresh, healthy, and personalized meals in the comfort of your home, ensuring your loved ones receive the right nutrition every day.</p><p>We understand that preparing balanced meals can be challenging for seniors, recovering patients, or busy families. That is why our trained caregivers handle everything—from planning menus to cooking and serving—while maintaining the highest standards of hygiene and care.</p>', 'Meal preparation', '', 'publish', 'closed', 'closed', '', 'meal-preparation', '', '', '2026-02-11 07:31:36', '2026-02-11 07:31:36', '', 0, 'https://mrarif.me/avalumcare/?page_id=322', 0, 'page', '', 0),
(323, 1, '2026-02-11 06:06:15', '2026-02-11 06:06:15', '', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 06:06:15', '2026-02-11 06:06:15', '', 322, 'https://mrarif.me/avalumcare/?p=323', 0, 'revision', '', 0),
(324, 1, '2026-02-11 06:06:46', '2026-02-11 06:06:46', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication reminders</h2>		<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.</p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.</p>', 'Medication reminders', '', 'publish', 'closed', 'closed', '', 'medication-reminders', '', '', '2026-02-11 07:30:51', '2026-02-11 07:30:51', '', 0, 'https://mrarif.me/avalumcare/?page_id=324', 0, 'page', '', 0),
(325, 1, '2026-02-11 06:06:46', '2026-02-11 06:06:46', '', 'Medication reminders', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2026-02-11 06:06:46', '2026-02-11 06:06:46', '', 324, 'https://mrarif.me/avalumcare/?p=325', 0, 'revision', '', 0),
(326, 1, '2026-02-11 06:08:25', '2026-02-11 06:08:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. Our reliable and comfortable transportation services are designed to ensure you travel safely, on time, and with peace of mind. Whether it’s a medical visit, shopping trip, or social outing, we are here to support your mobility and everyday needs.', 'Transportation', '', 'publish', 'closed', 'closed', '', 'transportation', '', '', '2026-02-11 07:35:06', '2026-02-11 07:35:06', '', 0, 'https://mrarif.me/avalumcare/?page_id=326', 0, 'page', '', 0),
(327, 1, '2026-02-11 06:08:25', '2026-02-11 06:08:25', '', 'Transportation', '', 'inherit', 'closed', 'closed', '', '326-revision-v1', '', '', '2026-02-11 06:08:25', '2026-02-11 06:08:25', '', 326, 'https://mrarif.me/avalumcare/?p=327', 0, 'revision', '', 0),
(328, 1, '2026-02-11 06:08:51', '2026-02-11 06:08:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Caring for People with Dementia at Home</h2>		With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Honors who the senior was earlier in life\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Builds confidence and enhances physical strength\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a routine to prevent agitation and other dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stimulates brain and promotes cognitive engagement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a safe environment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Manages changing dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Creates opportunities for social interaction\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Reduces the feelings of loneliness and depression\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Pro Training</h2>		Coping with a progressive condition requires patience, empathy and love. Our specially trained caregivers on Alzheimer\'s disease and other dementias can help provide just that for your family. Warm, familiar surroundings can play such an important role in managing cognitive diseases and enhancing quality of life.', 'Dementia care', '', 'publish', 'closed', 'closed', '', 'dementia-care', '', '', '2026-02-11 07:42:18', '2026-02-11 07:42:18', '', 0, 'https://mrarif.me/avalumcare/?page_id=328', 0, 'page', '', 0),
(329, 1, '2026-02-11 06:08:51', '2026-02-11 06:08:51', '', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 06:08:51', '2026-02-11 06:08:51', '', 328, 'https://mrarif.me/avalumcare/?p=329', 0, 'revision', '', 0),
(330, 1, '2026-02-11 06:09:12', '2026-02-11 06:09:12', '<img width=\"1000\" height=\"702\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-300x211.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-768x539.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Avalum Care caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'publish', 'closed', 'closed', '', 'companionship', '', '', '2026-02-11 08:16:51', '2026-02-11 08:16:51', '', 0, 'https://mrarif.me/avalumcare/?page_id=330', 0, 'page', '', 0),
(331, 1, '2026-02-11 06:09:12', '2026-02-11 06:09:12', '', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 06:09:12', '2026-02-11 06:09:12', '', 330, 'https://mrarif.me/avalumcare/?p=331', 0, 'revision', '', 0),
(332, 1, '2026-02-11 06:09:32', '2026-02-11 06:09:32', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Errand Service</h2>		<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.</p><p>We understand that small daily responsibilities—such as grocery shopping, collecting medicines, or paying bills—can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.</p>', 'Errand service', '', 'publish', 'closed', 'closed', '', 'errand-service', '', '', '2026-02-11 07:55:25', '2026-02-11 07:55:25', '', 0, 'https://mrarif.me/avalumcare/?page_id=332', 0, 'page', '', 0),
(333, 1, '2026-02-11 06:09:32', '2026-02-11 06:09:32', '', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 06:09:32', '2026-02-11 06:09:32', '', 332, 'https://mrarif.me/avalumcare/?p=333', 0, 'revision', '', 0),
(334, 1, '2026-02-11 06:09:52', '2026-02-11 06:09:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Light Housekeeping Service</h2>		<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.</p><p>Our trained caregivers provide gentle household assistance while respecting the client’s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.</p>', 'Light housekeeping', '', 'publish', 'closed', 'closed', '', 'light-housekeeping', '', '', '2026-02-11 07:58:24', '2026-02-11 07:58:24', '', 0, 'https://mrarif.me/avalumcare/?page_id=334', 0, 'page', '', 0),
(335, 1, '2026-02-11 06:09:52', '2026-02-11 06:09:52', '', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 06:09:52', '2026-02-11 06:09:52', '', 334, 'https://mrarif.me/avalumcare/?p=335', 0, 'revision', '', 0),
(336, 1, '2026-02-11 06:10:15', '2026-02-11 06:10:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>New Boost Care Service</h2>		<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone who needs additional daily care at home. This service focuses on improving energy, comfort, nutrition, hygiene, and emotional well-being, helping clients feel stronger, safer, and more confident in their everyday life.</p><p>We understand that sometimes regular home care is not enough. Clients may need extra attention, closer monitoring, and more personalized assistance during recovery, weakness, or long-term health conditions. The New Boost Care Service delivers that additional level of compassionate and professional support—right in the comfort of home.</p>', 'New boost', '', 'publish', 'closed', 'closed', '', 'new-boost', '', '', '2026-02-11 08:02:59', '2026-02-11 08:02:59', '', 0, 'https://mrarif.me/avalumcare/?page_id=336', 0, 'page', '', 0),
(337, 1, '2026-02-11 06:10:15', '2026-02-11 06:10:15', '', 'New boost', '', 'inherit', 'closed', 'closed', '', '336-revision-v1', '', '', '2026-02-11 06:10:15', '2026-02-11 06:10:15', '', 336, 'https://mrarif.me/avalumcare/?p=337', 0, 'revision', '', 0),
(338, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '338', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=338', 12, 'nav_menu_item', '', 0),
(339, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '339', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=339', 11, 'nav_menu_item', '', 0),
(340, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '340', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=340', 10, 'nav_menu_item', '', 0),
(341, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '341', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=341', 9, 'nav_menu_item', '', 0),
(342, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '342', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=342', 8, 'nav_menu_item', '', 0),
(343, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '343', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=343', 7, 'nav_menu_item', '', 0),
(344, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '344', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=344', 6, 'nav_menu_item', '', 0),
(345, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '345', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=345', 5, 'nav_menu_item', '', 0),
(346, 1, '2026-02-11 08:17:50', '2026-02-11 06:11:26', ' ', '', '', 'publish', 'closed', 'closed', '', '346', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=346', 4, 'nav_menu_item', '', 0),
(347, 1, '2026-02-11 06:14:53', '2026-02-11 06:14:53', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-11 06:14:53', '2026-02-11 06:14:53', '', 70, 'https://mrarif.me/avalumcare/?p=347', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(348, 1, '2026-02-11 06:16:49', '2026-02-11 06:16:49', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:16:49', '2026-02-11 06:16:49', '', 10, 'https://mrarif.me/avalumcare/?p=348', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(349, 1, '2026-02-11 06:16:49', '2026-02-11 06:16:49', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:16:49', '2026-02-11 06:16:49', '', 10, 'https://mrarif.me/avalumcare/?p=349', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(350, 1, '2026-02-11 06:16:50', '2026-02-11 06:16:50', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:16:50', '2026-02-11 06:16:50', '', 10, 'https://mrarif.me/avalumcare/?p=350', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(351, 1, '2026-02-11 06:17:02', '2026-02-11 06:17:02', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:02', '2026-02-11 06:17:02', '', 10, 'https://mrarif.me/avalumcare/?p=351', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(352, 1, '2026-02-11 06:17:03', '2026-02-11 06:17:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:03', '2026-02-11 06:17:03', '', 10, 'https://mrarif.me/avalumcare/?p=352', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(353, 1, '2026-02-11 06:17:04', '2026-02-11 06:17:04', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:04', '2026-02-11 06:17:04', '', 10, 'https://mrarif.me/avalumcare/?p=353', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(354, 1, '2026-02-11 06:17:13', '2026-02-11 06:17:13', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:13', '2026-02-11 06:17:13', '', 10, 'https://mrarif.me/avalumcare/?p=354', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(355, 1, '2026-02-11 06:17:13', '2026-02-11 06:17:13', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:13', '2026-02-11 06:17:13', '', 10, 'https://mrarif.me/avalumcare/?p=355', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(356, 1, '2026-02-11 06:17:13', '2026-02-11 06:17:13', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:13', '2026-02-11 06:17:13', '', 10, 'https://mrarif.me/avalumcare/?p=356', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(357, 1, '2026-02-11 06:17:39', '2026-02-11 06:17:39', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:39', '2026-02-11 06:17:39', '', 10, 'https://mrarif.me/avalumcare/?p=357', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(358, 1, '2026-02-11 06:17:39', '2026-02-11 06:17:39', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:39', '2026-02-11 06:17:39', '', 10, 'https://mrarif.me/avalumcare/?p=358', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(359, 1, '2026-02-11 06:17:40', '2026-02-11 06:17:40', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:17:40', '2026-02-11 06:17:40', '', 10, 'https://mrarif.me/avalumcare/?p=359', 0, 'revision', '', 0),
(360, 1, '2026-02-11 06:20:39', '2026-02-11 06:20:39', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:20:39', '2026-02-11 06:20:39', '', 29, 'https://mrarif.me/avalumcare/?p=360', 0, 'revision', '', 0),
(361, 1, '2026-02-11 06:20:39', '2026-02-11 06:20:39', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:20:39', '2026-02-11 06:20:39', '', 29, 'https://mrarif.me/avalumcare/?p=361', 0, 'revision', '', 0),
(362, 1, '2026-02-11 06:20:39', '2026-02-11 06:20:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:20:39', '2026-02-11 06:20:39', '', 29, 'https://mrarif.me/avalumcare/?p=362', 0, 'revision', '', 0),
(363, 1, '2026-02-11 06:23:45', '2026-02-11 06:23:45', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:23:45', '2026-02-11 06:23:45', '', 29, 'https://mrarif.me/avalumcare/?p=363', 0, 'revision', '', 0),
(364, 1, '2026-02-11 06:23:45', '2026-02-11 06:23:45', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:23:45', '2026-02-11 06:23:45', '', 29, 'https://mrarif.me/avalumcare/?p=364', 0, 'revision', '', 0),
(365, 1, '2026-02-11 06:23:46', '2026-02-11 06:23:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:23:46', '2026-02-11 06:23:46', '', 29, 'https://mrarif.me/avalumcare/?p=365', 0, 'revision', '', 0),
(366, 1, '2026-02-11 06:24:08', '2026-02-11 06:24:08', '', 'Our Mission (3)', '', 'inherit', 'open', 'closed', '', 'our-mission-3', '', '', '2026-02-11 06:24:08', '2026-02-11 06:24:08', '', 29, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(367, 1, '2026-02-11 06:24:33', '2026-02-11 06:24:33', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:24:33', '2026-02-11 06:24:33', '', 29, 'https://mrarif.me/avalumcare/?p=367', 0, 'revision', '', 0),
(368, 1, '2026-02-11 06:24:34', '2026-02-11 06:24:34', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img src=\"https://mrarif.me/avalumcare/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:24:34', '2026-02-11 06:24:34', '', 29, 'https://mrarif.me/avalumcare/?p=368', 0, 'revision', '', 0),
(369, 1, '2026-02-11 06:24:34', '2026-02-11 06:24:34', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:24:34', '2026-02-11 06:24:34', '', 29, 'https://mrarif.me/avalumcare/?p=369', 0, 'revision', '', 0),
(370, 1, '2026-02-11 06:26:28', '2026-02-11 06:26:28', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:26:28', '2026-02-11 06:26:28', '', 29, 'https://mrarif.me/avalumcare/?p=370', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:26:28', '2026-02-11 06:26:28', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:26:28', '2026-02-11 06:26:28', '', 29, 'https://mrarif.me/avalumcare/?p=371', 0, 'revision', '', 0),
(372, 1, '2026-02-11 06:26:29', '2026-02-11 06:26:29', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:26:29', '2026-02-11 06:26:29', '', 29, 'https://mrarif.me/avalumcare/?p=372', 0, 'revision', '', 0),
(373, 1, '2026-02-11 06:27:11', '2026-02-11 06:27:11', '', 'Our Philanthropy', '', 'inherit', 'open', 'closed', '', 'our-philanthropy', '', '', '2026-02-11 06:27:11', '2026-02-11 06:27:11', '', 29, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg', 0, 'attachment', 'image/jpeg', 0),
(374, 1, '2026-02-11 06:27:16', '2026-02-11 06:27:16', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:27:16', '2026-02-11 06:27:16', '', 29, 'https://mrarif.me/avalumcare/?p=374', 0, 'revision', '', 0),
(375, 1, '2026-02-11 06:27:16', '2026-02-11 06:27:16', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:27:16', '2026-02-11 06:27:16', '', 29, 'https://mrarif.me/avalumcare/?p=375', 0, 'revision', '', 0),
(376, 1, '2026-02-11 06:27:17', '2026-02-11 06:27:17', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:27:17', '2026-02-11 06:27:17', '', 29, 'https://mrarif.me/avalumcare/?p=376', 0, 'revision', '', 0),
(377, 1, '2026-02-11 06:28:05', '2026-02-11 06:28:05', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:28:05', '2026-02-11 06:28:05', '', 29, 'https://mrarif.me/avalumcare/?p=377', 0, 'revision', '', 0),
(378, 1, '2026-02-11 06:28:05', '2026-02-11 06:28:05', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:28:05', '2026-02-11 06:28:05', '', 29, 'https://mrarif.me/avalumcare/?p=378', 0, 'revision', '', 0),
(379, 1, '2026-02-11 06:28:06', '2026-02-11 06:28:06', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		<p>It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home. We believe there’s more to caring for people than just providing in-home assistance. You deserve a care partner that understands the course of your journey and will help navigate the road ahead. Whether it’s preparing a meal or providing 24-hour care, we will be there for you.</p><p>Exceptional service is something we never compromise on. With years of experience in providing integral care in the community, our professional team will ensure that your safety and well-being come first.</p>			<h2>Our  Mission</h2>		<p>Put simply, our mission is to improve the quality of life for those we serve. Of course, we recognize that everyone’s idea of “quality of life” is different, which is why it’s so important to us to make you an active part of your own care plan. We want you to be in the driver’s seat regardless of any limitations or challenges you’re facing.</p><p>Most of all, we believe aging isn’t just about staying healthy, safe and independent. It’s also about living well.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Mission-3-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our   Philanthropy</h2>		<p>Globally, an estimated 70 million people with disabilities have no access to a wheelchair. Those who cannot walk must crawl or be carried to their destination. In collaboration with a network of like-minded partners, Free Wheelchair Mission has distributed more than 1 million wheelchairs to people with disabilities in 93 developing countries around the world, providing renewed dignity, independence and hope through the gift of mobility, at no cost to the recipient.</p><p>As an organization, our work with Free Wheelchair Mission began in 2016 as we looked for a partner that would help us further our mission of improving lives worldwide. To date, our team’s efforts have raised more than $400,000 that has funded over 5,000 wheelchairs, which were distributed through life-changing Vision Trips to Vietnam, Ecuador and Costa Rica.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Our-Philanthropy-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2026-02-11 06:28:06', '2026-02-11 06:28:06', '', 29, 'https://mrarif.me/avalumcare/?p=379', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(380, 1, '2026-02-11 06:29:30', '2026-02-11 06:29:30', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:29:30', '2026-02-11 06:29:30', '', 10, 'https://mrarif.me/avalumcare/?p=380', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(381, 1, '2026-02-11 06:29:30', '2026-02-11 06:29:30', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:29:30', '2026-02-11 06:29:30', '', 10, 'https://mrarif.me/avalumcare/?p=381', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(382, 1, '2026-02-11 06:29:31', '2026-02-11 06:29:31', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:29:31', '2026-02-11 06:29:31', '', 10, 'https://mrarif.me/avalumcare/?p=382', 0, 'revision', '', 0),
(383, 1, '2026-02-11 06:31:18', '2026-02-11 06:31:18', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-11 06:31:18', '2026-02-11 06:31:18', '', 70, 'https://mrarif.me/avalumcare/?p=383', 0, 'revision', '', 0),
(384, 1, '2026-02-11 06:33:23', '2026-02-11 06:33:23', '', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:33:23', '2026-02-11 06:33:23', '', 31, 'https://mrarif.me/avalumcare/?p=384', 0, 'revision', '', 0),
(385, 1, '2026-02-11 06:33:23', '2026-02-11 06:33:23', '', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:33:23', '2026-02-11 06:33:23', '', 31, 'https://mrarif.me/avalumcare/?p=385', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(386, 1, '2026-02-11 06:33:23', '2026-02-11 06:33:23', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:33:23', '2026-02-11 06:33:23', '', 31, 'https://mrarif.me/avalumcare/?p=386', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(420, 1, '2026-02-11 06:57:12', '2026-02-11 06:57:12', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:57:12', '2026-02-11 06:57:12', '', 31, 'https://mrarif.me/avalumcare/?p=420', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:41:04', '2026-02-11 06:41:04', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:41:04', '2026-02-11 06:41:04', '', 31, 'https://mrarif.me/avalumcare/?p=390', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:41:04', '2026-02-11 06:41:04', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:41:04', '2026-02-11 06:41:04', '', 31, 'https://mrarif.me/avalumcare/?p=388', 0, 'revision', '', 0),
(389, 1, '2026-02-11 06:41:04', '2026-02-11 06:41:04', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:41:04', '2026-02-11 06:41:04', '', 31, 'https://mrarif.me/avalumcare/?p=389', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:44:18', '2026-02-11 06:44:18', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:44:18', '2026-02-11 06:44:18', '', 31, 'https://mrarif.me/avalumcare/?p=394', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(392, 1, '2026-02-11 06:44:18', '2026-02-11 06:44:18', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:44:18', '2026-02-11 06:44:18', '', 31, 'https://mrarif.me/avalumcare/?p=392', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(393, 1, '2026-02-11 06:44:18', '2026-02-11 06:44:18', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:44:18', '2026-02-11 06:44:18', '', 31, 'https://mrarif.me/avalumcare/?p=393', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:49:12', '2026-02-11 06:49:12', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:49:12', '2026-02-11 06:49:12', '', 31, 'https://mrarif.me/avalumcare/?p=395', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:49:12', '2026-02-11 06:49:12', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:49:12', '2026-02-11 06:49:12', '', 31, 'https://mrarif.me/avalumcare/?p=396', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(397, 1, '2026-02-11 06:49:12', '2026-02-11 06:49:12', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:49:12', '2026-02-11 06:49:12', '', 31, 'https://mrarif.me/avalumcare/?p=397', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 1, '2026-02-11 06:54:22', '2026-02-11 06:54:22', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" viewBox=\"0 0 64 64\" width=\"64\"><g id=\"Captions\"></g><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m20 35.5c-2.322 0-4.403-1.474-5.18-3.667l-.942.334c.917 2.592 3.377 4.333 6.122 4.333s5.205-1.741 6.123-4.333l-.942-.334c-.778 2.193-2.859 3.667-5.181 3.667z\"></path><path d=\"m10.5 38h-1v1.5h-5v-3.5c0-3.033 2.467-5.5 5.5-5.5h5.551c.252 2.244 2.139 4 4.449 4s4.197-1.756 4.449-4h5.051v2.22h1v-2.198c.714.064 1.401.265 2.05.602l.46-.888c-.942-.488-1.955-.736-3.01-.736h-5.5v-1.502c2.214-.926 3.804-3.044 3.977-5.547 1.151-.223 2.023-1.236 2.023-2.451 0-1.207-.86-2.217-2-2.449v-3.551c0-3.584-2.916-6.5-6.5-6.5h-4c-3.584 0-6.5 2.916-6.5 6.5v3.551c-1.14.232-2 1.242-2 2.449 0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-5.5c-3.584 0-6.5 2.916-6.5 6.5v16c0 .276.224.5.5.5h15.6v-1h-9.1zm19-18c0 .652-.418 1.208-1 1.415v-2.829c.582.206 1 .762 1 1.414zm-11.5-11.5h4c3.033 0 5.5 2.467 5.5 5.5v3.408c-.581-.207-1-.757-1-1.408v-2c0-1.378-1.122-2.5-2.5-2.5h-.184c-.211 0-.4.133-.471.333-.354.997-1.297 1.667-2.345 1.667h-2c-1.048 0-1.991-.67-2.345-1.667-.071-.199-.26-.333-.471-.333h-.184c-1.378 0-2.5 1.122-2.5 2.5v2c0 .651-.419 1.201-1 1.408v-3.408c0-3.033 2.467-5.5 5.5-5.5zm-7.5 11.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-3.55c1.14-.232 2-1.242 2-2.45v-2c0-.778.595-1.419 1.354-1.493.576 1.205 1.799 1.993 3.146 1.993h2c1.347 0 2.57-.788 3.146-1.993.759.074 1.354.715 1.354 1.493v2c0 1.208.86 2.217 2 2.45v3.55c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm5.5 6.5h4c.517 0 1.018-.067 1.5-.182v1.682c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5v-1.682c.482.115.983.182 1.5.182zm-8.5 12v1h-5v-1zm-5 2h5v9h-5z\"></path><path d=\"m52.5 38h-1v13.5h-3v-19h3.5c3.033 0 5.5 2.467 5.5 5.5v2h1v-2c0-3.584-2.916-6.5-6.5-6.5h-3.5v-1h3.5c.674 0 1.302-.263 1.759-.732.478-.466.741-1.094.741-1.768 0-1.425-.686-2.761-1.817-3.607 1.045-.299 1.817-1.253 1.817-2.393v-6c0-4.687-3.813-8.5-8.5-8.5h-4c-4.687 0-8.5 3.813-8.5 8.5v6c0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-3.5c-1.896 0-3.693.825-4.929 2.264l.759.651c1.045-1.217 2.566-1.915 4.17-1.915h3.5v6.87h1v-1.913c1.038.671 2.245 1.042 3.5 1.042s2.462-.372 3.5-1.042v14.043h-7.1v1h17.6v-1h-5.5zm1-10c0 .402-.156.776-.448 1.061-.276.283-.65.439-1.052.439h-2.552c1.446-.91 2.511-2.37 2.893-4.088.725.658 1.159 1.593 1.159 2.588zm-1-4.585v-2.829c.582.207 1 .763 1 1.415s-.418 1.207-1 1.414zm-10.5-14.915h4c4.136 0 7.5 3.364 7.5 7.5v4.013c-.304-.23-.657-.395-1.046-.467-.231-2.266-2.128-4.046-4.454-4.046h-8c-2.326 0-4.223 1.78-4.454 4.046-.389.072-.742.237-1.046.467v-4.013c0-4.136 3.364-7.5 7.5-7.5zm-7.5 13.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-4c0-1.93 1.57-3.5 3.5-3.5h8c1.93 0 3.5 1.57 3.5 3.5v4c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm7.5 13.5c-1.289 0-2.518-.464-3.5-1.287v-5.894c.482.115.983.182 1.5.182h4c.517 0 1.018-.067 1.5-.182v5.894c-.982.823-2.211 1.287-3.5 1.287z\"></path><path d=\"m58 41.5c-1.378 0-2.5 1.122-2.5 2.5v4c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5v-4c0-1.378-1.122-2.5-2.5-2.5zm1.5 6.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"></path><path d=\"m30 35.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5zm0 20c-5.238 0-9.5-4.262-9.5-9.5s4.262-9.5 9.5-9.5 9.5 4.262 9.5 9.5-4.262 9.5-9.5 9.5z\"></path><path d=\"m33 40.5c-1.129 0-2.194.431-3 1.197-.806-.767-1.871-1.197-3-1.197-2.402 0-4.357 1.955-4.357 4.357 0 1.157.449 2.247 1.275 3.08l5.119 5.162c.257.258.599.401.963.401s.706-.143.963-.401l5.129-5.172.001-.001c.814-.821 1.263-1.911 1.263-3.068.001-2.403-1.954-4.358-4.356-4.358zm2.384 6.721-5.13 5.173c-.136.137-.373.136-.507 0l-5.13-5.173c-.627-.633-.973-1.473-.973-2.364 0-1.851 1.506-3.357 3.357-3.357 1.018 0 1.97.455 2.611 1.248.189.234.588.234.777 0 .641-.793 1.593-1.248 2.611-1.248 1.851 0 3.357 1.506 3.357 3.357 0 .892-.346 1.731-.973 2.364z\"></path></g></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path d=\"m75.906 212.782c3.194 2.317 7.409 3.603 11.869 3.623h.103c.477 0 .947-.025 1.414-.054-.246.397-.49.797-.715 1.216-2.575 4.789-3.286 10.064-1.951 14.474.935 3.087 2.784 5.44 5.348 6.807 1.528.814 3.196 1.199 4.915 1.199 5.425 0 11.329-3.847 14.734-10.179.091-.168.161-.342.247-.511.314.597.657 1.188 1.031 1.767 3.672 5.7 9.385 9.019 14.561 9.019 2.049 0 4.015-.521 5.735-1.62 2.449-1.566 4.108-4.059 4.796-7.21.983-4.501-.142-9.704-3.086-14.273-.063-.098-.134-.187-.199-.284.221.012.439.035.661.042.208.005.414.008.621.008 9.21 0 16.758-5.543 16.953-12.567.1-3.629-1.701-7.038-5.071-9.6-3.14-2.388-7.325-3.769-11.784-3.889-.472-.012-.936.002-1.399.018.065-.093.139-.173.202-.268 3.04-4.513 4.272-9.694 3.381-14.215-.624-3.161-2.23-5.685-4.645-7.297-5.986-3.994-15.155-.855-20.444 6.997-.404.6-.771 1.213-1.111 1.834-.141-.307-.268-.617-.424-.921-4.326-8.415-13.064-12.602-19.479-9.328-2.59 1.322-4.484 3.644-5.475 6.714-1.415 4.385-.802 9.671 1.682 14.501.288.561.603 1.096.928 1.619-.464-.03-.929-.054-1.399-.056-.035 0-.069 0-.103 0-9.447 0-17.146 5.793-17.181 12.951-.02 3.629 1.857 6.997 5.285 9.483zm31.591 14.867c-3.209 5.968-9.309 9.199-13.32 7.065-1.822-.97-2.674-2.728-3.068-4.03-.963-3.179-.367-7.253 1.594-10.899 1.316-2.448 3.122-4.421 5.067-5.767.502-.269.981-.559 1.442-.866.234-.12.468-.219.703-.319.3.383.619.754.958 1.111 2.307 2.426 5.296 3.968 8.557 4.476.37 2.867-.3 6.193-1.933 9.229zm25.919 2.664c-.29 1.331-1.002 3.151-2.742 4.262-3.833 2.449-10.168-.293-13.836-5.989-1.574-2.443-2.477-5.146-2.64-7.665.03-.599.03-1.192 0-1.779.022-.257.069-.504.109-.754 3.583-.611 6.75-2.483 8.999-5.164 2.786.965 5.632 3.201 7.661 6.351 2.242 3.479 3.157 7.493 2.449 10.738zm2.545-34.882c3.487.094 6.71 1.137 9.075 2.936 2.137 1.624 3.282 3.664 3.224 5.742-.126 4.522-5.947 8.176-12.765 8.006-3.487-.094-6.71-1.137-9.075-2.936-.186-.141-.355-.29-.525-.437.537-1.47.861-3.043.907-4.69.053-1.916-.263-3.784-.902-5.533 2.363-1.968 6.033-3.214 10.061-3.088zm-18.894-16.831c2.805-4.164 7.039-6.681 10.582-6.681 1.24 0 2.397.309 3.376.963 1.714 1.144 2.388 2.975 2.651 4.308.643 3.26-.356 7.257-2.67 10.694-2.072 3.077-4.924 5.246-7.702 6.173-.201-.239-.396-.483-.613-.711-2.257-2.373-5.167-3.897-8.345-4.438-.496-3.188.496-7.004 2.721-10.308zm-4.999 14.761c2.763.074 5.331 1.215 7.229 3.212 1.896 1.994 2.898 4.604 2.822 7.349-.156 5.671-4.904 10.12-10.623 10.007-2.763-.075-5.33-1.215-7.229-3.212-1.896-1.994-2.898-4.604-2.822-7.349.156-5.671 4.946-10.144 10.623-10.007zm-20.918-17.638c.419-1.297 1.304-3.041 3.146-3.98.816-.416 1.711-.613 2.647-.613 3.715 0 8.065 3.1 10.538 7.91 1.685 3.278 2.273 6.875 1.659 9.858-3.517.618-6.621 2.482-8.845 5.117-2.934-1.078-5.883-3.728-7.755-7.371-1.891-3.677-2.41-7.759-1.39-10.921zm-3.349 19.309h.081c2.931.013 5.684.708 7.919 1.962.15.092.302.177.454.264.263.162.523.326.768.505.257.186.497.38.726.577-.584 1.53-.939 3.174-.987 4.899-.051 1.842.245 3.638.835 5.328-2.328 1.929-5.888 3.185-9.801 3.155-3.488-.015-6.734-.986-9.14-2.731-2.173-1.576-3.364-3.59-3.353-5.669.023-4.506 5.738-8.29 12.498-8.29z\"></path><path d=\"m18.249 131.887h9.834v6.978c0 1.294 1.048 2.342 2.342 2.342h6.068l17.952 134.068c.506 5.594 5.124 9.812 10.74 9.812h93.153c5.616 0 10.234-4.218 10.729-9.712l17.962-134.168h6.068c1.294 0 2.342-1.048 2.342-2.342v-6.978h9.834c1.294 0 2.342-1.048 2.342-2.342 0-48.44-30.182-91.973-69.232-106.031-.087-4.708-3.938-8.514-8.666-8.514h-35.912c-4.561 0-8.303 3.541-8.641 8.128-39.95 13.362-69.257 55.994-69.257 106.417 0 1.293 1.049 2.342 2.342 2.342zm146.166 142.965c-.287 3.164-2.899 5.55-6.076 5.55h-93.153c-3.177 0-5.789-2.386-6.087-5.65l-17.88-133.546h141.085zm26.342-138.329h-157.99v-14.04h157.99zm-96.952-116.839h35.913c2.201 0 3.991 1.79 3.991 4.119 0 2.201-1.79 3.991-3.991 3.991h-35.913c-2.201 0-3.991-1.79-3.991-4.119.001-2.202 1.791-3.991 3.991-3.991zm-7.716 8.062c1.439 2.804 4.354 4.73 7.716 4.73h35.913c3.224 0 6.037-1.772 7.532-4.429 36.435 13.299 64.712 53.776 65.658 99.156h-7.468v-7.062c0-1.294-1.048-2.342-2.342-2.342h-162.673c-1.294 0-2.342 1.048-2.342 2.342v7.062h-7.471c.882-47.109 28.283-86.73 65.477-99.457z\"></path><path d=\"m246.57 117.978c4.223-.04 8.01-2.417 9.883-6.203l3.311-6.694c1.74-3.516 1.523-7.595-.578-10.909s-5.661-5.267-9.621-5.174l-6.716.127c-3.88.073-7.382 2.108-9.366 5.444-1.985 3.334-2.103 7.382-.317 10.828l3.405 6.567c1.927 3.718 5.71 6.015 9.89 6.015.037-.001.073-.001.109-.001zm-5.841-8.17-3.405-6.567c-1.035-1.997-.967-4.344.184-6.277 1.151-1.934 3.181-3.114 5.431-3.157l6.716-.127c.042-.001.084-.001.126-.001 2.224 0 4.255 1.115 5.451 3 1.218 1.921 1.343 4.286.335 6.324l-3.311 6.694c-1.102 2.228-3.244 3.572-5.729 3.596-.022.001-.043.001-.066.001-2.46.001-4.598-1.299-5.732-3.486z\"></path><path d=\"m212.858 282.884c.074 1.237 1.098 2.202 2.337 2.202h.005l9.409-.018h.004.009.004l53.945-.103c1.241-.002 2.264-.972 2.333-2.211l3.668-65.635c.431-4.485-1.06-8.968-4.092-12.299-3.026-3.324-7.336-5.229-11.83-5.229-.01 0-.021 0-.03 0l-12.172.023-.194-71.187c.144-.15.277-.314.38-.507 1.041-1.936 2.314-4.071 3.661-6.332 4.801-8.051 10.241-17.175 10.35-25.515.053-4.03-1.451-7.672-4.35-10.534-4.556-4.5-12.376-6.948-21.511-6.717-8.365.213-15.224 2.718-19.313 7.055-2.843 3.014-4.271 6.844-4.13 11.075.243 7.355 6.002 16.37 10.629 23.613 1.862 2.914 3.47 5.431 4.376 7.3.077.159.183.293.288.426l.194 71.36-12.022.023c-4.505.008-8.821 1.931-11.84 5.274s-4.494 7.832-4.052 12.222zm14.087-2.504-.241-61.943 40.01-.075.215 61.943zm8.973-162.337c-4.319-6.761-9.694-15.174-9.895-21.247-.099-2.998.862-5.591 2.857-7.706 3.226-3.421 8.917-5.405 16.024-5.586 7.732-.2 14.498 1.81 18.1 5.367 1.999 1.974 2.994 4.376 2.958 7.141-.092 7.082-5.191 15.633-9.69 23.178-1.15 1.929-2.217 3.745-3.183 5.482l-13.12.025c-1.027-1.901-2.435-4.124-4.051-6.654zm15.687 23.14.159 58.385-10.251.019-.159-58.385zm-10.264-4.665-.019-7.14 10.251-.019.019 7.14zm-24.898 71.57c2.135-2.365 5.187-3.724 8.373-3.73l43.812-.083h.021c3.178 0 6.226 1.347 8.366 3.698 2.144 2.356 3.199 5.527 2.887 8.792l-3.552 63.522-4.738.009-.218-62.737c.06-.987-.272-1.933-.949-2.683-.704-.775-1.669-1.201-2.718-1.201-.002 0-.005 0-.008 0l-42.051.08c-1.053.002-2.02.433-2.725 1.217-.682.76-1.001 1.712-.926 2.761l.243 62.656-4.86.009-3.818-63.602c-.317-3.17.725-6.345 2.861-8.708z\"></path></g></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:54:22', '2026-02-11 06:54:22', '', 31, 'https://mrarif.me/avalumcare/?p=409', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(401, 1, '2026-02-11 06:51:26', '2026-02-11 06:51:26', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:51:26', '2026-02-11 06:51:26', '', 31, 'https://mrarif.me/avalumcare/?p=401', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(399, 1, '2026-02-11 06:51:25', '2026-02-11 06:51:25', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:51:25', '2026-02-11 06:51:25', '', 31, 'https://mrarif.me/avalumcare/?p=399', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(400, 1, '2026-02-11 06:51:25', '2026-02-11 06:51:25', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:51:25', '2026-02-11 06:51:25', '', 31, 'https://mrarif.me/avalumcare/?p=400', 0, 'revision', '', 0),
(402, 1, '2026-02-11 06:52:27', '2026-02-11 06:52:27', '', 'romantic-relationship_12471512 (1)', '', 'inherit', 'open', 'closed', '', 'romantic-relationship_12471512-1', '', '', '2026-02-11 06:52:27', '2026-02-11 06:52:27', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/romantic-relationship_12471512-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(403, 1, '2026-02-11 06:53:04', '2026-02-11 06:53:04', '', 'partners_6708999', '', 'inherit', 'open', 'closed', '', 'partners_6708999', '', '', '2026-02-11 06:53:04', '2026-02-11 06:53:04', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/partners_6708999.svg', 0, 'attachment', 'image/svg+xml', 0),
(404, 1, '2026-02-11 06:53:19', '2026-02-11 06:53:19', '', 'homeless_7652962', '', 'inherit', 'open', 'closed', '', 'homeless_7652962', '', '', '2026-02-11 06:53:19', '2026-02-11 06:53:19', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/homeless_7652962.svg', 0, 'attachment', 'image/svg+xml', 0),
(405, 1, '2026-02-11 06:53:57', '2026-02-11 06:53:57', '', 'bucket_4254709', '', 'inherit', 'open', 'closed', '', 'bucket_4254709', '', '', '2026-02-11 06:53:57', '2026-02-11 06:53:57', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/bucket_4254709.svg', 0, 'attachment', 'image/svg+xml', 0),
(406, 1, '2026-02-11 06:54:12', '2026-02-11 06:54:12', '', 'house_9733722', '', 'inherit', 'open', 'closed', '', 'house_9733722', '', '', '2026-02-11 06:54:12', '2026-02-11 06:54:12', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/house_9733722.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(407, 1, '2026-02-11 06:54:21', '2026-02-11 06:54:21', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:54:21', '2026-02-11 06:54:21', '', 31, 'https://mrarif.me/avalumcare/?p=407', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:54:21', '2026-02-11 06:54:21', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:54:21', '2026-02-11 06:54:21', '', 31, 'https://mrarif.me/avalumcare/?p=408', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(410, 1, '2026-02-11 06:56:24', '2026-02-11 06:56:24', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:56:24', '2026-02-11 06:56:24', '', 10, 'https://mrarif.me/avalumcare/?p=410', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(411, 1, '2026-02-11 06:56:24', '2026-02-11 06:56:24', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:56:24', '2026-02-11 06:56:24', '', 10, 'https://mrarif.me/avalumcare/?p=411', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(412, 1, '2026-02-11 06:56:24', '2026-02-11 06:56:24', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:56:24', '2026-02-11 06:56:24', '', 10, 'https://mrarif.me/avalumcare/?p=412', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(413, 1, '2026-02-11 06:56:25', '2026-02-11 06:56:25', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" viewBox=\"0 0 64 64\" width=\"64\"><g id=\"Captions\"></g><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m20 35.5c-2.322 0-4.403-1.474-5.18-3.667l-.942.334c.917 2.592 3.377 4.333 6.122 4.333s5.205-1.741 6.123-4.333l-.942-.334c-.778 2.193-2.859 3.667-5.181 3.667z\"></path><path d=\"m10.5 38h-1v1.5h-5v-3.5c0-3.033 2.467-5.5 5.5-5.5h5.551c.252 2.244 2.139 4 4.449 4s4.197-1.756 4.449-4h5.051v2.22h1v-2.198c.714.064 1.401.265 2.05.602l.46-.888c-.942-.488-1.955-.736-3.01-.736h-5.5v-1.502c2.214-.926 3.804-3.044 3.977-5.547 1.151-.223 2.023-1.236 2.023-2.451 0-1.207-.86-2.217-2-2.449v-3.551c0-3.584-2.916-6.5-6.5-6.5h-4c-3.584 0-6.5 2.916-6.5 6.5v3.551c-1.14.232-2 1.242-2 2.449 0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-5.5c-3.584 0-6.5 2.916-6.5 6.5v16c0 .276.224.5.5.5h15.6v-1h-9.1zm19-18c0 .652-.418 1.208-1 1.415v-2.829c.582.206 1 .762 1 1.414zm-11.5-11.5h4c3.033 0 5.5 2.467 5.5 5.5v3.408c-.581-.207-1-.757-1-1.408v-2c0-1.378-1.122-2.5-2.5-2.5h-.184c-.211 0-.4.133-.471.333-.354.997-1.297 1.667-2.345 1.667h-2c-1.048 0-1.991-.67-2.345-1.667-.071-.199-.26-.333-.471-.333h-.184c-1.378 0-2.5 1.122-2.5 2.5v2c0 .651-.419 1.201-1 1.408v-3.408c0-3.033 2.467-5.5 5.5-5.5zm-7.5 11.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-3.55c1.14-.232 2-1.242 2-2.45v-2c0-.778.595-1.419 1.354-1.493.576 1.205 1.799 1.993 3.146 1.993h2c1.347 0 2.57-.788 3.146-1.993.759.074 1.354.715 1.354 1.493v2c0 1.208.86 2.217 2 2.45v3.55c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm5.5 6.5h4c.517 0 1.018-.067 1.5-.182v1.682c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5v-1.682c.482.115.983.182 1.5.182zm-8.5 12v1h-5v-1zm-5 2h5v9h-5z\"></path><path d=\"m52.5 38h-1v13.5h-3v-19h3.5c3.033 0 5.5 2.467 5.5 5.5v2h1v-2c0-3.584-2.916-6.5-6.5-6.5h-3.5v-1h3.5c.674 0 1.302-.263 1.759-.732.478-.466.741-1.094.741-1.768 0-1.425-.686-2.761-1.817-3.607 1.045-.299 1.817-1.253 1.817-2.393v-6c0-4.687-3.813-8.5-8.5-8.5h-4c-4.687 0-8.5 3.813-8.5 8.5v6c0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-3.5c-1.896 0-3.693.825-4.929 2.264l.759.651c1.045-1.217 2.566-1.915 4.17-1.915h3.5v6.87h1v-1.913c1.038.671 2.245 1.042 3.5 1.042s2.462-.372 3.5-1.042v14.043h-7.1v1h17.6v-1h-5.5zm1-10c0 .402-.156.776-.448 1.061-.276.283-.65.439-1.052.439h-2.552c1.446-.91 2.511-2.37 2.893-4.088.725.658 1.159 1.593 1.159 2.588zm-1-4.585v-2.829c.582.207 1 .763 1 1.415s-.418 1.207-1 1.414zm-10.5-14.915h4c4.136 0 7.5 3.364 7.5 7.5v4.013c-.304-.23-.657-.395-1.046-.467-.231-2.266-2.128-4.046-4.454-4.046h-8c-2.326 0-4.223 1.78-4.454 4.046-.389.072-.742.237-1.046.467v-4.013c0-4.136 3.364-7.5 7.5-7.5zm-7.5 13.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-4c0-1.93 1.57-3.5 3.5-3.5h8c1.93 0 3.5 1.57 3.5 3.5v4c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm7.5 13.5c-1.289 0-2.518-.464-3.5-1.287v-5.894c.482.115.983.182 1.5.182h4c.517 0 1.018-.067 1.5-.182v5.894c-.982.823-2.211 1.287-3.5 1.287z\"></path><path d=\"m58 41.5c-1.378 0-2.5 1.122-2.5 2.5v4c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5v-4c0-1.378-1.122-2.5-2.5-2.5zm1.5 6.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"></path><path d=\"m30 35.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5zm0 20c-5.238 0-9.5-4.262-9.5-9.5s4.262-9.5 9.5-9.5 9.5 4.262 9.5 9.5-4.262 9.5-9.5 9.5z\"></path><path d=\"m33 40.5c-1.129 0-2.194.431-3 1.197-.806-.767-1.871-1.197-3-1.197-2.402 0-4.357 1.955-4.357 4.357 0 1.157.449 2.247 1.275 3.08l5.119 5.162c.257.258.599.401.963.401s.706-.143.963-.401l5.129-5.172.001-.001c.814-.821 1.263-1.911 1.263-3.068.001-2.403-1.954-4.358-4.356-4.358zm2.384 6.721-5.13 5.173c-.136.137-.373.136-.507 0l-5.13-5.173c-.627-.633-.973-1.473-.973-2.364 0-1.851 1.506-3.357 3.357-3.357 1.018 0 1.97.455 2.611 1.248.189.234.588.234.777 0 .641-.793 1.593-1.248 2.611-1.248 1.851 0 3.357 1.506 3.357 3.357 0 .892-.346 1.731-.973 2.364z\"></path></g></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path d=\"m75.906 212.782c3.194 2.317 7.409 3.603 11.869 3.623h.103c.477 0 .947-.025 1.414-.054-.246.397-.49.797-.715 1.216-2.575 4.789-3.286 10.064-1.951 14.474.935 3.087 2.784 5.44 5.348 6.807 1.528.814 3.196 1.199 4.915 1.199 5.425 0 11.329-3.847 14.734-10.179.091-.168.161-.342.247-.511.314.597.657 1.188 1.031 1.767 3.672 5.7 9.385 9.019 14.561 9.019 2.049 0 4.015-.521 5.735-1.62 2.449-1.566 4.108-4.059 4.796-7.21.983-4.501-.142-9.704-3.086-14.273-.063-.098-.134-.187-.199-.284.221.012.439.035.661.042.208.005.414.008.621.008 9.21 0 16.758-5.543 16.953-12.567.1-3.629-1.701-7.038-5.071-9.6-3.14-2.388-7.325-3.769-11.784-3.889-.472-.012-.936.002-1.399.018.065-.093.139-.173.202-.268 3.04-4.513 4.272-9.694 3.381-14.215-.624-3.161-2.23-5.685-4.645-7.297-5.986-3.994-15.155-.855-20.444 6.997-.404.6-.771 1.213-1.111 1.834-.141-.307-.268-.617-.424-.921-4.326-8.415-13.064-12.602-19.479-9.328-2.59 1.322-4.484 3.644-5.475 6.714-1.415 4.385-.802 9.671 1.682 14.501.288.561.603 1.096.928 1.619-.464-.03-.929-.054-1.399-.056-.035 0-.069 0-.103 0-9.447 0-17.146 5.793-17.181 12.951-.02 3.629 1.857 6.997 5.285 9.483zm31.591 14.867c-3.209 5.968-9.309 9.199-13.32 7.065-1.822-.97-2.674-2.728-3.068-4.03-.963-3.179-.367-7.253 1.594-10.899 1.316-2.448 3.122-4.421 5.067-5.767.502-.269.981-.559 1.442-.866.234-.12.468-.219.703-.319.3.383.619.754.958 1.111 2.307 2.426 5.296 3.968 8.557 4.476.37 2.867-.3 6.193-1.933 9.229zm25.919 2.664c-.29 1.331-1.002 3.151-2.742 4.262-3.833 2.449-10.168-.293-13.836-5.989-1.574-2.443-2.477-5.146-2.64-7.665.03-.599.03-1.192 0-1.779.022-.257.069-.504.109-.754 3.583-.611 6.75-2.483 8.999-5.164 2.786.965 5.632 3.201 7.661 6.351 2.242 3.479 3.157 7.493 2.449 10.738zm2.545-34.882c3.487.094 6.71 1.137 9.075 2.936 2.137 1.624 3.282 3.664 3.224 5.742-.126 4.522-5.947 8.176-12.765 8.006-3.487-.094-6.71-1.137-9.075-2.936-.186-.141-.355-.29-.525-.437.537-1.47.861-3.043.907-4.69.053-1.916-.263-3.784-.902-5.533 2.363-1.968 6.033-3.214 10.061-3.088zm-18.894-16.831c2.805-4.164 7.039-6.681 10.582-6.681 1.24 0 2.397.309 3.376.963 1.714 1.144 2.388 2.975 2.651 4.308.643 3.26-.356 7.257-2.67 10.694-2.072 3.077-4.924 5.246-7.702 6.173-.201-.239-.396-.483-.613-.711-2.257-2.373-5.167-3.897-8.345-4.438-.496-3.188.496-7.004 2.721-10.308zm-4.999 14.761c2.763.074 5.331 1.215 7.229 3.212 1.896 1.994 2.898 4.604 2.822 7.349-.156 5.671-4.904 10.12-10.623 10.007-2.763-.075-5.33-1.215-7.229-3.212-1.896-1.994-2.898-4.604-2.822-7.349.156-5.671 4.946-10.144 10.623-10.007zm-20.918-17.638c.419-1.297 1.304-3.041 3.146-3.98.816-.416 1.711-.613 2.647-.613 3.715 0 8.065 3.1 10.538 7.91 1.685 3.278 2.273 6.875 1.659 9.858-3.517.618-6.621 2.482-8.845 5.117-2.934-1.078-5.883-3.728-7.755-7.371-1.891-3.677-2.41-7.759-1.39-10.921zm-3.349 19.309h.081c2.931.013 5.684.708 7.919 1.962.15.092.302.177.454.264.263.162.523.326.768.505.257.186.497.38.726.577-.584 1.53-.939 3.174-.987 4.899-.051 1.842.245 3.638.835 5.328-2.328 1.929-5.888 3.185-9.801 3.155-3.488-.015-6.734-.986-9.14-2.731-2.173-1.576-3.364-3.59-3.353-5.669.023-4.506 5.738-8.29 12.498-8.29z\"></path><path d=\"m18.249 131.887h9.834v6.978c0 1.294 1.048 2.342 2.342 2.342h6.068l17.952 134.068c.506 5.594 5.124 9.812 10.74 9.812h93.153c5.616 0 10.234-4.218 10.729-9.712l17.962-134.168h6.068c1.294 0 2.342-1.048 2.342-2.342v-6.978h9.834c1.294 0 2.342-1.048 2.342-2.342 0-48.44-30.182-91.973-69.232-106.031-.087-4.708-3.938-8.514-8.666-8.514h-35.912c-4.561 0-8.303 3.541-8.641 8.128-39.95 13.362-69.257 55.994-69.257 106.417 0 1.293 1.049 2.342 2.342 2.342zm146.166 142.965c-.287 3.164-2.899 5.55-6.076 5.55h-93.153c-3.177 0-5.789-2.386-6.087-5.65l-17.88-133.546h141.085zm26.342-138.329h-157.99v-14.04h157.99zm-96.952-116.839h35.913c2.201 0 3.991 1.79 3.991 4.119 0 2.201-1.79 3.991-3.991 3.991h-35.913c-2.201 0-3.991-1.79-3.991-4.119.001-2.202 1.791-3.991 3.991-3.991zm-7.716 8.062c1.439 2.804 4.354 4.73 7.716 4.73h35.913c3.224 0 6.037-1.772 7.532-4.429 36.435 13.299 64.712 53.776 65.658 99.156h-7.468v-7.062c0-1.294-1.048-2.342-2.342-2.342h-162.673c-1.294 0-2.342 1.048-2.342 2.342v7.062h-7.471c.882-47.109 28.283-86.73 65.477-99.457z\"></path><path d=\"m246.57 117.978c4.223-.04 8.01-2.417 9.883-6.203l3.311-6.694c1.74-3.516 1.523-7.595-.578-10.909s-5.661-5.267-9.621-5.174l-6.716.127c-3.88.073-7.382 2.108-9.366 5.444-1.985 3.334-2.103 7.382-.317 10.828l3.405 6.567c1.927 3.718 5.71 6.015 9.89 6.015.037-.001.073-.001.109-.001zm-5.841-8.17-3.405-6.567c-1.035-1.997-.967-4.344.184-6.277 1.151-1.934 3.181-3.114 5.431-3.157l6.716-.127c.042-.001.084-.001.126-.001 2.224 0 4.255 1.115 5.451 3 1.218 1.921 1.343 4.286.335 6.324l-3.311 6.694c-1.102 2.228-3.244 3.572-5.729 3.596-.022.001-.043.001-.066.001-2.46.001-4.598-1.299-5.732-3.486z\"></path><path d=\"m212.858 282.884c.074 1.237 1.098 2.202 2.337 2.202h.005l9.409-.018h.004.009.004l53.945-.103c1.241-.002 2.264-.972 2.333-2.211l3.668-65.635c.431-4.485-1.06-8.968-4.092-12.299-3.026-3.324-7.336-5.229-11.83-5.229-.01 0-.021 0-.03 0l-12.172.023-.194-71.187c.144-.15.277-.314.38-.507 1.041-1.936 2.314-4.071 3.661-6.332 4.801-8.051 10.241-17.175 10.35-25.515.053-4.03-1.451-7.672-4.35-10.534-4.556-4.5-12.376-6.948-21.511-6.717-8.365.213-15.224 2.718-19.313 7.055-2.843 3.014-4.271 6.844-4.13 11.075.243 7.355 6.002 16.37 10.629 23.613 1.862 2.914 3.47 5.431 4.376 7.3.077.159.183.293.288.426l.194 71.36-12.022.023c-4.505.008-8.821 1.931-11.84 5.274s-4.494 7.832-4.052 12.222zm14.087-2.504-.241-61.943 40.01-.075.215 61.943zm8.973-162.337c-4.319-6.761-9.694-15.174-9.895-21.247-.099-2.998.862-5.591 2.857-7.706 3.226-3.421 8.917-5.405 16.024-5.586 7.732-.2 14.498 1.81 18.1 5.367 1.999 1.974 2.994 4.376 2.958 7.141-.092 7.082-5.191 15.633-9.69 23.178-1.15 1.929-2.217 3.745-3.183 5.482l-13.12.025c-1.027-1.901-2.435-4.124-4.051-6.654zm15.687 23.14.159 58.385-10.251.019-.159-58.385zm-10.264-4.665-.019-7.14 10.251-.019.019 7.14zm-24.898 71.57c2.135-2.365 5.187-3.724 8.373-3.73l43.812-.083h.021c3.178 0 6.226 1.347 8.366 3.698 2.144 2.356 3.199 5.527 2.887 8.792l-3.552 63.522-4.738.009-.218-62.737c.06-.987-.272-1.933-.949-2.683-.704-.775-1.669-1.201-2.718-1.201-.002 0-.005 0-.008 0l-42.051.08c-1.053.002-2.02.433-2.725 1.217-.682.76-1.001 1.712-.926 2.761l.243 62.656-4.86.009-3.818-63.602c-.317-3.17.725-6.345 2.861-8.708z\"></path></g></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:56:25', '2026-02-11 06:56:25', '', 31, 'https://mrarif.me/avalumcare/?p=413', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(414, 1, '2026-02-11 06:56:26', '2026-02-11 06:56:26', '<h2>These are the services  we offer</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" viewBox=\"0 0 64 64\" width=\"64\"><g id=\"Captions\"></g><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m20 35.5c-2.322 0-4.403-1.474-5.18-3.667l-.942.334c.917 2.592 3.377 4.333 6.122 4.333s5.205-1.741 6.123-4.333l-.942-.334c-.778 2.193-2.859 3.667-5.181 3.667z\"></path><path d=\"m10.5 38h-1v1.5h-5v-3.5c0-3.033 2.467-5.5 5.5-5.5h5.551c.252 2.244 2.139 4 4.449 4s4.197-1.756 4.449-4h5.051v2.22h1v-2.198c.714.064 1.401.265 2.05.602l.46-.888c-.942-.488-1.955-.736-3.01-.736h-5.5v-1.502c2.214-.926 3.804-3.044 3.977-5.547 1.151-.223 2.023-1.236 2.023-2.451 0-1.207-.86-2.217-2-2.449v-3.551c0-3.584-2.916-6.5-6.5-6.5h-4c-3.584 0-6.5 2.916-6.5 6.5v3.551c-1.14.232-2 1.242-2 2.449 0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-5.5c-3.584 0-6.5 2.916-6.5 6.5v16c0 .276.224.5.5.5h15.6v-1h-9.1zm19-18c0 .652-.418 1.208-1 1.415v-2.829c.582.206 1 .762 1 1.414zm-11.5-11.5h4c3.033 0 5.5 2.467 5.5 5.5v3.408c-.581-.207-1-.757-1-1.408v-2c0-1.378-1.122-2.5-2.5-2.5h-.184c-.211 0-.4.133-.471.333-.354.997-1.297 1.667-2.345 1.667h-2c-1.048 0-1.991-.67-2.345-1.667-.071-.199-.26-.333-.471-.333h-.184c-1.378 0-2.5 1.122-2.5 2.5v2c0 .651-.419 1.201-1 1.408v-3.408c0-3.033 2.467-5.5 5.5-5.5zm-7.5 11.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-3.55c1.14-.232 2-1.242 2-2.45v-2c0-.778.595-1.419 1.354-1.493.576 1.205 1.799 1.993 3.146 1.993h2c1.347 0 2.57-.788 3.146-1.993.759.074 1.354.715 1.354 1.493v2c0 1.208.86 2.217 2 2.45v3.55c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm5.5 6.5h4c.517 0 1.018-.067 1.5-.182v1.682c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5v-1.682c.482.115.983.182 1.5.182zm-8.5 12v1h-5v-1zm-5 2h5v9h-5z\"></path><path d=\"m52.5 38h-1v13.5h-3v-19h3.5c3.033 0 5.5 2.467 5.5 5.5v2h1v-2c0-3.584-2.916-6.5-6.5-6.5h-3.5v-1h3.5c.674 0 1.302-.263 1.759-.732.478-.466.741-1.094.741-1.768 0-1.425-.686-2.761-1.817-3.607 1.045-.299 1.817-1.253 1.817-2.393v-6c0-4.687-3.813-8.5-8.5-8.5h-4c-4.687 0-8.5 3.813-8.5 8.5v6c0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-3.5c-1.896 0-3.693.825-4.929 2.264l.759.651c1.045-1.217 2.566-1.915 4.17-1.915h3.5v6.87h1v-1.913c1.038.671 2.245 1.042 3.5 1.042s2.462-.372 3.5-1.042v14.043h-7.1v1h17.6v-1h-5.5zm1-10c0 .402-.156.776-.448 1.061-.276.283-.65.439-1.052.439h-2.552c1.446-.91 2.511-2.37 2.893-4.088.725.658 1.159 1.593 1.159 2.588zm-1-4.585v-2.829c.582.207 1 .763 1 1.415s-.418 1.207-1 1.414zm-10.5-14.915h4c4.136 0 7.5 3.364 7.5 7.5v4.013c-.304-.23-.657-.395-1.046-.467-.231-2.266-2.128-4.046-4.454-4.046h-8c-2.326 0-4.223 1.78-4.454 4.046-.389.072-.742.237-1.046.467v-4.013c0-4.136 3.364-7.5 7.5-7.5zm-7.5 13.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-4c0-1.93 1.57-3.5 3.5-3.5h8c1.93 0 3.5 1.57 3.5 3.5v4c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm7.5 13.5c-1.289 0-2.518-.464-3.5-1.287v-5.894c.482.115.983.182 1.5.182h4c.517 0 1.018-.067 1.5-.182v5.894c-.982.823-2.211 1.287-3.5 1.287z\"></path><path d=\"m58 41.5c-1.378 0-2.5 1.122-2.5 2.5v4c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5v-4c0-1.378-1.122-2.5-2.5-2.5zm1.5 6.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"></path><path d=\"m30 35.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5zm0 20c-5.238 0-9.5-4.262-9.5-9.5s4.262-9.5 9.5-9.5 9.5 4.262 9.5 9.5-4.262 9.5-9.5 9.5z\"></path><path d=\"m33 40.5c-1.129 0-2.194.431-3 1.197-.806-.767-1.871-1.197-3-1.197-2.402 0-4.357 1.955-4.357 4.357 0 1.157.449 2.247 1.275 3.08l5.119 5.162c.257.258.599.401.963.401s.706-.143.963-.401l5.129-5.172.001-.001c.814-.821 1.263-1.911 1.263-3.068.001-2.403-1.954-4.358-4.356-4.358zm2.384 6.721-5.13 5.173c-.136.137-.373.136-.507 0l-5.13-5.173c-.627-.633-.973-1.473-.973-2.364 0-1.851 1.506-3.357 3.357-3.357 1.018 0 1.97.455 2.611 1.248.189.234.588.234.777 0 .641-.793 1.593-1.248 2.611-1.248 1.851 0 3.357 1.506 3.357 3.357 0 .892-.346 1.731-.973 2.364z\"></path></g></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path d=\"m75.906 212.782c3.194 2.317 7.409 3.603 11.869 3.623h.103c.477 0 .947-.025 1.414-.054-.246.397-.49.797-.715 1.216-2.575 4.789-3.286 10.064-1.951 14.474.935 3.087 2.784 5.44 5.348 6.807 1.528.814 3.196 1.199 4.915 1.199 5.425 0 11.329-3.847 14.734-10.179.091-.168.161-.342.247-.511.314.597.657 1.188 1.031 1.767 3.672 5.7 9.385 9.019 14.561 9.019 2.049 0 4.015-.521 5.735-1.62 2.449-1.566 4.108-4.059 4.796-7.21.983-4.501-.142-9.704-3.086-14.273-.063-.098-.134-.187-.199-.284.221.012.439.035.661.042.208.005.414.008.621.008 9.21 0 16.758-5.543 16.953-12.567.1-3.629-1.701-7.038-5.071-9.6-3.14-2.388-7.325-3.769-11.784-3.889-.472-.012-.936.002-1.399.018.065-.093.139-.173.202-.268 3.04-4.513 4.272-9.694 3.381-14.215-.624-3.161-2.23-5.685-4.645-7.297-5.986-3.994-15.155-.855-20.444 6.997-.404.6-.771 1.213-1.111 1.834-.141-.307-.268-.617-.424-.921-4.326-8.415-13.064-12.602-19.479-9.328-2.59 1.322-4.484 3.644-5.475 6.714-1.415 4.385-.802 9.671 1.682 14.501.288.561.603 1.096.928 1.619-.464-.03-.929-.054-1.399-.056-.035 0-.069 0-.103 0-9.447 0-17.146 5.793-17.181 12.951-.02 3.629 1.857 6.997 5.285 9.483zm31.591 14.867c-3.209 5.968-9.309 9.199-13.32 7.065-1.822-.97-2.674-2.728-3.068-4.03-.963-3.179-.367-7.253 1.594-10.899 1.316-2.448 3.122-4.421 5.067-5.767.502-.269.981-.559 1.442-.866.234-.12.468-.219.703-.319.3.383.619.754.958 1.111 2.307 2.426 5.296 3.968 8.557 4.476.37 2.867-.3 6.193-1.933 9.229zm25.919 2.664c-.29 1.331-1.002 3.151-2.742 4.262-3.833 2.449-10.168-.293-13.836-5.989-1.574-2.443-2.477-5.146-2.64-7.665.03-.599.03-1.192 0-1.779.022-.257.069-.504.109-.754 3.583-.611 6.75-2.483 8.999-5.164 2.786.965 5.632 3.201 7.661 6.351 2.242 3.479 3.157 7.493 2.449 10.738zm2.545-34.882c3.487.094 6.71 1.137 9.075 2.936 2.137 1.624 3.282 3.664 3.224 5.742-.126 4.522-5.947 8.176-12.765 8.006-3.487-.094-6.71-1.137-9.075-2.936-.186-.141-.355-.29-.525-.437.537-1.47.861-3.043.907-4.69.053-1.916-.263-3.784-.902-5.533 2.363-1.968 6.033-3.214 10.061-3.088zm-18.894-16.831c2.805-4.164 7.039-6.681 10.582-6.681 1.24 0 2.397.309 3.376.963 1.714 1.144 2.388 2.975 2.651 4.308.643 3.26-.356 7.257-2.67 10.694-2.072 3.077-4.924 5.246-7.702 6.173-.201-.239-.396-.483-.613-.711-2.257-2.373-5.167-3.897-8.345-4.438-.496-3.188.496-7.004 2.721-10.308zm-4.999 14.761c2.763.074 5.331 1.215 7.229 3.212 1.896 1.994 2.898 4.604 2.822 7.349-.156 5.671-4.904 10.12-10.623 10.007-2.763-.075-5.33-1.215-7.229-3.212-1.896-1.994-2.898-4.604-2.822-7.349.156-5.671 4.946-10.144 10.623-10.007zm-20.918-17.638c.419-1.297 1.304-3.041 3.146-3.98.816-.416 1.711-.613 2.647-.613 3.715 0 8.065 3.1 10.538 7.91 1.685 3.278 2.273 6.875 1.659 9.858-3.517.618-6.621 2.482-8.845 5.117-2.934-1.078-5.883-3.728-7.755-7.371-1.891-3.677-2.41-7.759-1.39-10.921zm-3.349 19.309h.081c2.931.013 5.684.708 7.919 1.962.15.092.302.177.454.264.263.162.523.326.768.505.257.186.497.38.726.577-.584 1.53-.939 3.174-.987 4.899-.051 1.842.245 3.638.835 5.328-2.328 1.929-5.888 3.185-9.801 3.155-3.488-.015-6.734-.986-9.14-2.731-2.173-1.576-3.364-3.59-3.353-5.669.023-4.506 5.738-8.29 12.498-8.29z\"></path><path d=\"m18.249 131.887h9.834v6.978c0 1.294 1.048 2.342 2.342 2.342h6.068l17.952 134.068c.506 5.594 5.124 9.812 10.74 9.812h93.153c5.616 0 10.234-4.218 10.729-9.712l17.962-134.168h6.068c1.294 0 2.342-1.048 2.342-2.342v-6.978h9.834c1.294 0 2.342-1.048 2.342-2.342 0-48.44-30.182-91.973-69.232-106.031-.087-4.708-3.938-8.514-8.666-8.514h-35.912c-4.561 0-8.303 3.541-8.641 8.128-39.95 13.362-69.257 55.994-69.257 106.417 0 1.293 1.049 2.342 2.342 2.342zm146.166 142.965c-.287 3.164-2.899 5.55-6.076 5.55h-93.153c-3.177 0-5.789-2.386-6.087-5.65l-17.88-133.546h141.085zm26.342-138.329h-157.99v-14.04h157.99zm-96.952-116.839h35.913c2.201 0 3.991 1.79 3.991 4.119 0 2.201-1.79 3.991-3.991 3.991h-35.913c-2.201 0-3.991-1.79-3.991-4.119.001-2.202 1.791-3.991 3.991-3.991zm-7.716 8.062c1.439 2.804 4.354 4.73 7.716 4.73h35.913c3.224 0 6.037-1.772 7.532-4.429 36.435 13.299 64.712 53.776 65.658 99.156h-7.468v-7.062c0-1.294-1.048-2.342-2.342-2.342h-162.673c-1.294 0-2.342 1.048-2.342 2.342v7.062h-7.471c.882-47.109 28.283-86.73 65.477-99.457z\"></path><path d=\"m246.57 117.978c4.223-.04 8.01-2.417 9.883-6.203l3.311-6.694c1.74-3.516 1.523-7.595-.578-10.909s-5.661-5.267-9.621-5.174l-6.716.127c-3.88.073-7.382 2.108-9.366 5.444-1.985 3.334-2.103 7.382-.317 10.828l3.405 6.567c1.927 3.718 5.71 6.015 9.89 6.015.037-.001.073-.001.109-.001zm-5.841-8.17-3.405-6.567c-1.035-1.997-.967-4.344.184-6.277 1.151-1.934 3.181-3.114 5.431-3.157l6.716-.127c.042-.001.084-.001.126-.001 2.224 0 4.255 1.115 5.451 3 1.218 1.921 1.343 4.286.335 6.324l-3.311 6.694c-1.102 2.228-3.244 3.572-5.729 3.596-.022.001-.043.001-.066.001-2.46.001-4.598-1.299-5.732-3.486z\"></path><path d=\"m212.858 282.884c.074 1.237 1.098 2.202 2.337 2.202h.005l9.409-.018h.004.009.004l53.945-.103c1.241-.002 2.264-.972 2.333-2.211l3.668-65.635c.431-4.485-1.06-8.968-4.092-12.299-3.026-3.324-7.336-5.229-11.83-5.229-.01 0-.021 0-.03 0l-12.172.023-.194-71.187c.144-.15.277-.314.38-.507 1.041-1.936 2.314-4.071 3.661-6.332 4.801-8.051 10.241-17.175 10.35-25.515.053-4.03-1.451-7.672-4.35-10.534-4.556-4.5-12.376-6.948-21.511-6.717-8.365.213-15.224 2.718-19.313 7.055-2.843 3.014-4.271 6.844-4.13 11.075.243 7.355 6.002 16.37 10.629 23.613 1.862 2.914 3.47 5.431 4.376 7.3.077.159.183.293.288.426l.194 71.36-12.022.023c-4.505.008-8.821 1.931-11.84 5.274s-4.494 7.832-4.052 12.222zm14.087-2.504-.241-61.943 40.01-.075.215 61.943zm8.973-162.337c-4.319-6.761-9.694-15.174-9.895-21.247-.099-2.998.862-5.591 2.857-7.706 3.226-3.421 8.917-5.405 16.024-5.586 7.732-.2 14.498 1.81 18.1 5.367 1.999 1.974 2.994 4.376 2.958 7.141-.092 7.082-5.191 15.633-9.69 23.178-1.15 1.929-2.217 3.745-3.183 5.482l-13.12.025c-1.027-1.901-2.435-4.124-4.051-6.654zm15.687 23.14.159 58.385-10.251.019-.159-58.385zm-10.264-4.665-.019-7.14 10.251-.019.019 7.14zm-24.898 71.57c2.135-2.365 5.187-3.724 8.373-3.73l43.812-.083h.021c3.178 0 6.226 1.347 8.366 3.698 2.144 2.356 3.199 5.527 2.887 8.792l-3.552 63.522-4.738.009-.218-62.737c.06-.987-.272-1.933-.949-2.683-.704-.775-1.669-1.201-2.718-1.201-.002 0-.005 0-.008 0l-42.051.08c-1.053.002-2.02.433-2.725 1.217-.682.76-1.001 1.712-.926 2.761l.243 62.656-4.86.009-3.818-63.602c-.317-3.17.725-6.345 2.861-8.708z\"></path></g></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:56:26', '2026-02-11 06:56:26', '', 31, 'https://mrarif.me/avalumcare/?p=414', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(415, 1, '2026-02-11 06:56:26', '2026-02-11 06:56:26', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" viewBox=\"0 0 64 64\" width=\"64\"><g id=\"Captions\"></g><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m20 35.5c-2.322 0-4.403-1.474-5.18-3.667l-.942.334c.917 2.592 3.377 4.333 6.122 4.333s5.205-1.741 6.123-4.333l-.942-.334c-.778 2.193-2.859 3.667-5.181 3.667z\"></path><path d=\"m10.5 38h-1v1.5h-5v-3.5c0-3.033 2.467-5.5 5.5-5.5h5.551c.252 2.244 2.139 4 4.449 4s4.197-1.756 4.449-4h5.051v2.22h1v-2.198c.714.064 1.401.265 2.05.602l.46-.888c-.942-.488-1.955-.736-3.01-.736h-5.5v-1.502c2.214-.926 3.804-3.044 3.977-5.547 1.151-.223 2.023-1.236 2.023-2.451 0-1.207-.86-2.217-2-2.449v-3.551c0-3.584-2.916-6.5-6.5-6.5h-4c-3.584 0-6.5 2.916-6.5 6.5v3.551c-1.14.232-2 1.242-2 2.449 0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-5.5c-3.584 0-6.5 2.916-6.5 6.5v16c0 .276.224.5.5.5h15.6v-1h-9.1zm19-18c0 .652-.418 1.208-1 1.415v-2.829c.582.206 1 .762 1 1.414zm-11.5-11.5h4c3.033 0 5.5 2.467 5.5 5.5v3.408c-.581-.207-1-.757-1-1.408v-2c0-1.378-1.122-2.5-2.5-2.5h-.184c-.211 0-.4.133-.471.333-.354.997-1.297 1.667-2.345 1.667h-2c-1.048 0-1.991-.67-2.345-1.667-.071-.199-.26-.333-.471-.333h-.184c-1.378 0-2.5 1.122-2.5 2.5v2c0 .651-.419 1.201-1 1.408v-3.408c0-3.033 2.467-5.5 5.5-5.5zm-7.5 11.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-3.55c1.14-.232 2-1.242 2-2.45v-2c0-.778.595-1.419 1.354-1.493.576 1.205 1.799 1.993 3.146 1.993h2c1.347 0 2.57-.788 3.146-1.993.759.074 1.354.715 1.354 1.493v2c0 1.208.86 2.217 2 2.45v3.55c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm5.5 6.5h4c.517 0 1.018-.067 1.5-.182v1.682c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5v-1.682c.482.115.983.182 1.5.182zm-8.5 12v1h-5v-1zm-5 2h5v9h-5z\"></path><path d=\"m52.5 38h-1v13.5h-3v-19h3.5c3.033 0 5.5 2.467 5.5 5.5v2h1v-2c0-3.584-2.916-6.5-6.5-6.5h-3.5v-1h3.5c.674 0 1.302-.263 1.759-.732.478-.466.741-1.094.741-1.768 0-1.425-.686-2.761-1.817-3.607 1.045-.299 1.817-1.253 1.817-2.393v-6c0-4.687-3.813-8.5-8.5-8.5h-4c-4.687 0-8.5 3.813-8.5 8.5v6c0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-3.5c-1.896 0-3.693.825-4.929 2.264l.759.651c1.045-1.217 2.566-1.915 4.17-1.915h3.5v6.87h1v-1.913c1.038.671 2.245 1.042 3.5 1.042s2.462-.372 3.5-1.042v14.043h-7.1v1h17.6v-1h-5.5zm1-10c0 .402-.156.776-.448 1.061-.276.283-.65.439-1.052.439h-2.552c1.446-.91 2.511-2.37 2.893-4.088.725.658 1.159 1.593 1.159 2.588zm-1-4.585v-2.829c.582.207 1 .763 1 1.415s-.418 1.207-1 1.414zm-10.5-14.915h4c4.136 0 7.5 3.364 7.5 7.5v4.013c-.304-.23-.657-.395-1.046-.467-.231-2.266-2.128-4.046-4.454-4.046h-8c-2.326 0-4.223 1.78-4.454 4.046-.389.072-.742.237-1.046.467v-4.013c0-4.136 3.364-7.5 7.5-7.5zm-7.5 13.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-4c0-1.93 1.57-3.5 3.5-3.5h8c1.93 0 3.5 1.57 3.5 3.5v4c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm7.5 13.5c-1.289 0-2.518-.464-3.5-1.287v-5.894c.482.115.983.182 1.5.182h4c.517 0 1.018-.067 1.5-.182v5.894c-.982.823-2.211 1.287-3.5 1.287z\"></path><path d=\"m58 41.5c-1.378 0-2.5 1.122-2.5 2.5v4c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5v-4c0-1.378-1.122-2.5-2.5-2.5zm1.5 6.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"></path><path d=\"m30 35.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5zm0 20c-5.238 0-9.5-4.262-9.5-9.5s4.262-9.5 9.5-9.5 9.5 4.262 9.5 9.5-4.262 9.5-9.5 9.5z\"></path><path d=\"m33 40.5c-1.129 0-2.194.431-3 1.197-.806-.767-1.871-1.197-3-1.197-2.402 0-4.357 1.955-4.357 4.357 0 1.157.449 2.247 1.275 3.08l5.119 5.162c.257.258.599.401.963.401s.706-.143.963-.401l5.129-5.172.001-.001c.814-.821 1.263-1.911 1.263-3.068.001-2.403-1.954-4.358-4.356-4.358zm2.384 6.721-5.13 5.173c-.136.137-.373.136-.507 0l-5.13-5.173c-.627-.633-.973-1.473-.973-2.364 0-1.851 1.506-3.357 3.357-3.357 1.018 0 1.97.455 2.611 1.248.189.234.588.234.777 0 .641-.793 1.593-1.248 2.611-1.248 1.851 0 3.357 1.506 3.357 3.357 0 .892-.346 1.731-.973 2.364z\"></path></g></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path d=\"m75.906 212.782c3.194 2.317 7.409 3.603 11.869 3.623h.103c.477 0 .947-.025 1.414-.054-.246.397-.49.797-.715 1.216-2.575 4.789-3.286 10.064-1.951 14.474.935 3.087 2.784 5.44 5.348 6.807 1.528.814 3.196 1.199 4.915 1.199 5.425 0 11.329-3.847 14.734-10.179.091-.168.161-.342.247-.511.314.597.657 1.188 1.031 1.767 3.672 5.7 9.385 9.019 14.561 9.019 2.049 0 4.015-.521 5.735-1.62 2.449-1.566 4.108-4.059 4.796-7.21.983-4.501-.142-9.704-3.086-14.273-.063-.098-.134-.187-.199-.284.221.012.439.035.661.042.208.005.414.008.621.008 9.21 0 16.758-5.543 16.953-12.567.1-3.629-1.701-7.038-5.071-9.6-3.14-2.388-7.325-3.769-11.784-3.889-.472-.012-.936.002-1.399.018.065-.093.139-.173.202-.268 3.04-4.513 4.272-9.694 3.381-14.215-.624-3.161-2.23-5.685-4.645-7.297-5.986-3.994-15.155-.855-20.444 6.997-.404.6-.771 1.213-1.111 1.834-.141-.307-.268-.617-.424-.921-4.326-8.415-13.064-12.602-19.479-9.328-2.59 1.322-4.484 3.644-5.475 6.714-1.415 4.385-.802 9.671 1.682 14.501.288.561.603 1.096.928 1.619-.464-.03-.929-.054-1.399-.056-.035 0-.069 0-.103 0-9.447 0-17.146 5.793-17.181 12.951-.02 3.629 1.857 6.997 5.285 9.483zm31.591 14.867c-3.209 5.968-9.309 9.199-13.32 7.065-1.822-.97-2.674-2.728-3.068-4.03-.963-3.179-.367-7.253 1.594-10.899 1.316-2.448 3.122-4.421 5.067-5.767.502-.269.981-.559 1.442-.866.234-.12.468-.219.703-.319.3.383.619.754.958 1.111 2.307 2.426 5.296 3.968 8.557 4.476.37 2.867-.3 6.193-1.933 9.229zm25.919 2.664c-.29 1.331-1.002 3.151-2.742 4.262-3.833 2.449-10.168-.293-13.836-5.989-1.574-2.443-2.477-5.146-2.64-7.665.03-.599.03-1.192 0-1.779.022-.257.069-.504.109-.754 3.583-.611 6.75-2.483 8.999-5.164 2.786.965 5.632 3.201 7.661 6.351 2.242 3.479 3.157 7.493 2.449 10.738zm2.545-34.882c3.487.094 6.71 1.137 9.075 2.936 2.137 1.624 3.282 3.664 3.224 5.742-.126 4.522-5.947 8.176-12.765 8.006-3.487-.094-6.71-1.137-9.075-2.936-.186-.141-.355-.29-.525-.437.537-1.47.861-3.043.907-4.69.053-1.916-.263-3.784-.902-5.533 2.363-1.968 6.033-3.214 10.061-3.088zm-18.894-16.831c2.805-4.164 7.039-6.681 10.582-6.681 1.24 0 2.397.309 3.376.963 1.714 1.144 2.388 2.975 2.651 4.308.643 3.26-.356 7.257-2.67 10.694-2.072 3.077-4.924 5.246-7.702 6.173-.201-.239-.396-.483-.613-.711-2.257-2.373-5.167-3.897-8.345-4.438-.496-3.188.496-7.004 2.721-10.308zm-4.999 14.761c2.763.074 5.331 1.215 7.229 3.212 1.896 1.994 2.898 4.604 2.822 7.349-.156 5.671-4.904 10.12-10.623 10.007-2.763-.075-5.33-1.215-7.229-3.212-1.896-1.994-2.898-4.604-2.822-7.349.156-5.671 4.946-10.144 10.623-10.007zm-20.918-17.638c.419-1.297 1.304-3.041 3.146-3.98.816-.416 1.711-.613 2.647-.613 3.715 0 8.065 3.1 10.538 7.91 1.685 3.278 2.273 6.875 1.659 9.858-3.517.618-6.621 2.482-8.845 5.117-2.934-1.078-5.883-3.728-7.755-7.371-1.891-3.677-2.41-7.759-1.39-10.921zm-3.349 19.309h.081c2.931.013 5.684.708 7.919 1.962.15.092.302.177.454.264.263.162.523.326.768.505.257.186.497.38.726.577-.584 1.53-.939 3.174-.987 4.899-.051 1.842.245 3.638.835 5.328-2.328 1.929-5.888 3.185-9.801 3.155-3.488-.015-6.734-.986-9.14-2.731-2.173-1.576-3.364-3.59-3.353-5.669.023-4.506 5.738-8.29 12.498-8.29z\"></path><path d=\"m18.249 131.887h9.834v6.978c0 1.294 1.048 2.342 2.342 2.342h6.068l17.952 134.068c.506 5.594 5.124 9.812 10.74 9.812h93.153c5.616 0 10.234-4.218 10.729-9.712l17.962-134.168h6.068c1.294 0 2.342-1.048 2.342-2.342v-6.978h9.834c1.294 0 2.342-1.048 2.342-2.342 0-48.44-30.182-91.973-69.232-106.031-.087-4.708-3.938-8.514-8.666-8.514h-35.912c-4.561 0-8.303 3.541-8.641 8.128-39.95 13.362-69.257 55.994-69.257 106.417 0 1.293 1.049 2.342 2.342 2.342zm146.166 142.965c-.287 3.164-2.899 5.55-6.076 5.55h-93.153c-3.177 0-5.789-2.386-6.087-5.65l-17.88-133.546h141.085zm26.342-138.329h-157.99v-14.04h157.99zm-96.952-116.839h35.913c2.201 0 3.991 1.79 3.991 4.119 0 2.201-1.79 3.991-3.991 3.991h-35.913c-2.201 0-3.991-1.79-3.991-4.119.001-2.202 1.791-3.991 3.991-3.991zm-7.716 8.062c1.439 2.804 4.354 4.73 7.716 4.73h35.913c3.224 0 6.037-1.772 7.532-4.429 36.435 13.299 64.712 53.776 65.658 99.156h-7.468v-7.062c0-1.294-1.048-2.342-2.342-2.342h-162.673c-1.294 0-2.342 1.048-2.342 2.342v7.062h-7.471c.882-47.109 28.283-86.73 65.477-99.457z\"></path><path d=\"m246.57 117.978c4.223-.04 8.01-2.417 9.883-6.203l3.311-6.694c1.74-3.516 1.523-7.595-.578-10.909s-5.661-5.267-9.621-5.174l-6.716.127c-3.88.073-7.382 2.108-9.366 5.444-1.985 3.334-2.103 7.382-.317 10.828l3.405 6.567c1.927 3.718 5.71 6.015 9.89 6.015.037-.001.073-.001.109-.001zm-5.841-8.17-3.405-6.567c-1.035-1.997-.967-4.344.184-6.277 1.151-1.934 3.181-3.114 5.431-3.157l6.716-.127c.042-.001.084-.001.126-.001 2.224 0 4.255 1.115 5.451 3 1.218 1.921 1.343 4.286.335 6.324l-3.311 6.694c-1.102 2.228-3.244 3.572-5.729 3.596-.022.001-.043.001-.066.001-2.46.001-4.598-1.299-5.732-3.486z\"></path><path d=\"m212.858 282.884c.074 1.237 1.098 2.202 2.337 2.202h.005l9.409-.018h.004.009.004l53.945-.103c1.241-.002 2.264-.972 2.333-2.211l3.668-65.635c.431-4.485-1.06-8.968-4.092-12.299-3.026-3.324-7.336-5.229-11.83-5.229-.01 0-.021 0-.03 0l-12.172.023-.194-71.187c.144-.15.277-.314.38-.507 1.041-1.936 2.314-4.071 3.661-6.332 4.801-8.051 10.241-17.175 10.35-25.515.053-4.03-1.451-7.672-4.35-10.534-4.556-4.5-12.376-6.948-21.511-6.717-8.365.213-15.224 2.718-19.313 7.055-2.843 3.014-4.271 6.844-4.13 11.075.243 7.355 6.002 16.37 10.629 23.613 1.862 2.914 3.47 5.431 4.376 7.3.077.159.183.293.288.426l.194 71.36-12.022.023c-4.505.008-8.821 1.931-11.84 5.274s-4.494 7.832-4.052 12.222zm14.087-2.504-.241-61.943 40.01-.075.215 61.943zm8.973-162.337c-4.319-6.761-9.694-15.174-9.895-21.247-.099-2.998.862-5.591 2.857-7.706 3.226-3.421 8.917-5.405 16.024-5.586 7.732-.2 14.498 1.81 18.1 5.367 1.999 1.974 2.994 4.376 2.958 7.141-.092 7.082-5.191 15.633-9.69 23.178-1.15 1.929-2.217 3.745-3.183 5.482l-13.12.025c-1.027-1.901-2.435-4.124-4.051-6.654zm15.687 23.14.159 58.385-10.251.019-.159-58.385zm-10.264-4.665-.019-7.14 10.251-.019.019 7.14zm-24.898 71.57c2.135-2.365 5.187-3.724 8.373-3.73l43.812-.083h.021c3.178 0 6.226 1.347 8.366 3.698 2.144 2.356 3.199 5.527 2.887 8.792l-3.552 63.522-4.738.009-.218-62.737c.06-.987-.272-1.933-.949-2.683-.704-.775-1.669-1.201-2.718-1.201-.002 0-.005 0-.008 0l-42.051.08c-1.053.002-2.02.433-2.725 1.217-.682.76-1.001 1.712-.926 2.761l.243 62.656-4.86.009-3.818-63.602c-.317-3.17.725-6.345 2.861-8.708z\"></path></g></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:56:26', '2026-02-11 06:56:26', '', 31, 'https://mrarif.me/avalumcare/?p=415', 0, 'revision', '', 0),
(416, 1, '2026-02-11 06:56:51', '2026-02-11 06:56:51', '', 'love_14309274', '', 'inherit', 'open', 'closed', '', 'love_14309274', '', '', '2026-02-11 06:56:51', '2026-02-11 06:56:51', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/love_14309274.svg', 0, 'attachment', 'image/svg+xml', 0),
(417, 1, '2026-02-11 06:57:07', '2026-02-11 06:57:07', '', 'tidy_17275573', '', 'inherit', 'open', 'closed', '', 'tidy_17275573', '', '', '2026-02-11 06:57:07', '2026-02-11 06:57:07', '', 31, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/tidy_17275573.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(418, 1, '2026-02-11 06:57:11', '2026-02-11 06:57:11', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" viewBox=\"0 0 64 64\" width=\"64\"><g id=\"Captions\"></g><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m20 35.5c-2.322 0-4.403-1.474-5.18-3.667l-.942.334c.917 2.592 3.377 4.333 6.122 4.333s5.205-1.741 6.123-4.333l-.942-.334c-.778 2.193-2.859 3.667-5.181 3.667z\"></path><path d=\"m10.5 38h-1v1.5h-5v-3.5c0-3.033 2.467-5.5 5.5-5.5h5.551c.252 2.244 2.139 4 4.449 4s4.197-1.756 4.449-4h5.051v2.22h1v-2.198c.714.064 1.401.265 2.05.602l.46-.888c-.942-.488-1.955-.736-3.01-.736h-5.5v-1.502c2.214-.926 3.804-3.044 3.977-5.547 1.151-.223 2.023-1.236 2.023-2.451 0-1.207-.86-2.217-2-2.449v-3.551c0-3.584-2.916-6.5-6.5-6.5h-4c-3.584 0-6.5 2.916-6.5 6.5v3.551c-1.14.232-2 1.242-2 2.449 0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-5.5c-3.584 0-6.5 2.916-6.5 6.5v16c0 .276.224.5.5.5h15.6v-1h-9.1zm19-18c0 .652-.418 1.208-1 1.415v-2.829c.582.206 1 .762 1 1.414zm-11.5-11.5h4c3.033 0 5.5 2.467 5.5 5.5v3.408c-.581-.207-1-.757-1-1.408v-2c0-1.378-1.122-2.5-2.5-2.5h-.184c-.211 0-.4.133-.471.333-.354.997-1.297 1.667-2.345 1.667h-2c-1.048 0-1.991-.67-2.345-1.667-.071-.199-.26-.333-.471-.333h-.184c-1.378 0-2.5 1.122-2.5 2.5v2c0 .651-.419 1.201-1 1.408v-3.408c0-3.033 2.467-5.5 5.5-5.5zm-7.5 11.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-3.55c1.14-.232 2-1.242 2-2.45v-2c0-.778.595-1.419 1.354-1.493.576 1.205 1.799 1.993 3.146 1.993h2c1.347 0 2.57-.788 3.146-1.993.759.074 1.354.715 1.354 1.493v2c0 1.208.86 2.217 2 2.45v3.55c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm5.5 6.5h4c.517 0 1.018-.067 1.5-.182v1.682c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5v-1.682c.482.115.983.182 1.5.182zm-8.5 12v1h-5v-1zm-5 2h5v9h-5z\"></path><path d=\"m52.5 38h-1v13.5h-3v-19h3.5c3.033 0 5.5 2.467 5.5 5.5v2h1v-2c0-3.584-2.916-6.5-6.5-6.5h-3.5v-1h3.5c.674 0 1.302-.263 1.759-.732.478-.466.741-1.094.741-1.768 0-1.425-.686-2.761-1.817-3.607 1.045-.299 1.817-1.253 1.817-2.393v-6c0-4.687-3.813-8.5-8.5-8.5h-4c-4.687 0-8.5 3.813-8.5 8.5v6c0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-3.5c-1.896 0-3.693.825-4.929 2.264l.759.651c1.045-1.217 2.566-1.915 4.17-1.915h3.5v6.87h1v-1.913c1.038.671 2.245 1.042 3.5 1.042s2.462-.372 3.5-1.042v14.043h-7.1v1h17.6v-1h-5.5zm1-10c0 .402-.156.776-.448 1.061-.276.283-.65.439-1.052.439h-2.552c1.446-.91 2.511-2.37 2.893-4.088.725.658 1.159 1.593 1.159 2.588zm-1-4.585v-2.829c.582.207 1 .763 1 1.415s-.418 1.207-1 1.414zm-10.5-14.915h4c4.136 0 7.5 3.364 7.5 7.5v4.013c-.304-.23-.657-.395-1.046-.467-.231-2.266-2.128-4.046-4.454-4.046h-8c-2.326 0-4.223 1.78-4.454 4.046-.389.072-.742.237-1.046.467v-4.013c0-4.136 3.364-7.5 7.5-7.5zm-7.5 13.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-4c0-1.93 1.57-3.5 3.5-3.5h8c1.93 0 3.5 1.57 3.5 3.5v4c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm7.5 13.5c-1.289 0-2.518-.464-3.5-1.287v-5.894c.482.115.983.182 1.5.182h4c.517 0 1.018-.067 1.5-.182v5.894c-.982.823-2.211 1.287-3.5 1.287z\"></path><path d=\"m58 41.5c-1.378 0-2.5 1.122-2.5 2.5v4c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5v-4c0-1.378-1.122-2.5-2.5-2.5zm1.5 6.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"></path><path d=\"m30 35.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5zm0 20c-5.238 0-9.5-4.262-9.5-9.5s4.262-9.5 9.5-9.5 9.5 4.262 9.5 9.5-4.262 9.5-9.5 9.5z\"></path><path d=\"m33 40.5c-1.129 0-2.194.431-3 1.197-.806-.767-1.871-1.197-3-1.197-2.402 0-4.357 1.955-4.357 4.357 0 1.157.449 2.247 1.275 3.08l5.119 5.162c.257.258.599.401.963.401s.706-.143.963-.401l5.129-5.172.001-.001c.814-.821 1.263-1.911 1.263-3.068.001-2.403-1.954-4.358-4.356-4.358zm2.384 6.721-5.13 5.173c-.136.137-.373.136-.507 0l-5.13-5.173c-.627-.633-.973-1.473-.973-2.364 0-1.851 1.506-3.357 3.357-3.357 1.018 0 1.97.455 2.611 1.248.189.234.588.234.777 0 .641-.793 1.593-1.248 2.611-1.248 1.851 0 3.357 1.506 3.357 3.357 0 .892-.346 1.731-.973 2.364z\"></path></g></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path d=\"m75.906 212.782c3.194 2.317 7.409 3.603 11.869 3.623h.103c.477 0 .947-.025 1.414-.054-.246.397-.49.797-.715 1.216-2.575 4.789-3.286 10.064-1.951 14.474.935 3.087 2.784 5.44 5.348 6.807 1.528.814 3.196 1.199 4.915 1.199 5.425 0 11.329-3.847 14.734-10.179.091-.168.161-.342.247-.511.314.597.657 1.188 1.031 1.767 3.672 5.7 9.385 9.019 14.561 9.019 2.049 0 4.015-.521 5.735-1.62 2.449-1.566 4.108-4.059 4.796-7.21.983-4.501-.142-9.704-3.086-14.273-.063-.098-.134-.187-.199-.284.221.012.439.035.661.042.208.005.414.008.621.008 9.21 0 16.758-5.543 16.953-12.567.1-3.629-1.701-7.038-5.071-9.6-3.14-2.388-7.325-3.769-11.784-3.889-.472-.012-.936.002-1.399.018.065-.093.139-.173.202-.268 3.04-4.513 4.272-9.694 3.381-14.215-.624-3.161-2.23-5.685-4.645-7.297-5.986-3.994-15.155-.855-20.444 6.997-.404.6-.771 1.213-1.111 1.834-.141-.307-.268-.617-.424-.921-4.326-8.415-13.064-12.602-19.479-9.328-2.59 1.322-4.484 3.644-5.475 6.714-1.415 4.385-.802 9.671 1.682 14.501.288.561.603 1.096.928 1.619-.464-.03-.929-.054-1.399-.056-.035 0-.069 0-.103 0-9.447 0-17.146 5.793-17.181 12.951-.02 3.629 1.857 6.997 5.285 9.483zm31.591 14.867c-3.209 5.968-9.309 9.199-13.32 7.065-1.822-.97-2.674-2.728-3.068-4.03-.963-3.179-.367-7.253 1.594-10.899 1.316-2.448 3.122-4.421 5.067-5.767.502-.269.981-.559 1.442-.866.234-.12.468-.219.703-.319.3.383.619.754.958 1.111 2.307 2.426 5.296 3.968 8.557 4.476.37 2.867-.3 6.193-1.933 9.229zm25.919 2.664c-.29 1.331-1.002 3.151-2.742 4.262-3.833 2.449-10.168-.293-13.836-5.989-1.574-2.443-2.477-5.146-2.64-7.665.03-.599.03-1.192 0-1.779.022-.257.069-.504.109-.754 3.583-.611 6.75-2.483 8.999-5.164 2.786.965 5.632 3.201 7.661 6.351 2.242 3.479 3.157 7.493 2.449 10.738zm2.545-34.882c3.487.094 6.71 1.137 9.075 2.936 2.137 1.624 3.282 3.664 3.224 5.742-.126 4.522-5.947 8.176-12.765 8.006-3.487-.094-6.71-1.137-9.075-2.936-.186-.141-.355-.29-.525-.437.537-1.47.861-3.043.907-4.69.053-1.916-.263-3.784-.902-5.533 2.363-1.968 6.033-3.214 10.061-3.088zm-18.894-16.831c2.805-4.164 7.039-6.681 10.582-6.681 1.24 0 2.397.309 3.376.963 1.714 1.144 2.388 2.975 2.651 4.308.643 3.26-.356 7.257-2.67 10.694-2.072 3.077-4.924 5.246-7.702 6.173-.201-.239-.396-.483-.613-.711-2.257-2.373-5.167-3.897-8.345-4.438-.496-3.188.496-7.004 2.721-10.308zm-4.999 14.761c2.763.074 5.331 1.215 7.229 3.212 1.896 1.994 2.898 4.604 2.822 7.349-.156 5.671-4.904 10.12-10.623 10.007-2.763-.075-5.33-1.215-7.229-3.212-1.896-1.994-2.898-4.604-2.822-7.349.156-5.671 4.946-10.144 10.623-10.007zm-20.918-17.638c.419-1.297 1.304-3.041 3.146-3.98.816-.416 1.711-.613 2.647-.613 3.715 0 8.065 3.1 10.538 7.91 1.685 3.278 2.273 6.875 1.659 9.858-3.517.618-6.621 2.482-8.845 5.117-2.934-1.078-5.883-3.728-7.755-7.371-1.891-3.677-2.41-7.759-1.39-10.921zm-3.349 19.309h.081c2.931.013 5.684.708 7.919 1.962.15.092.302.177.454.264.263.162.523.326.768.505.257.186.497.38.726.577-.584 1.53-.939 3.174-.987 4.899-.051 1.842.245 3.638.835 5.328-2.328 1.929-5.888 3.185-9.801 3.155-3.488-.015-6.734-.986-9.14-2.731-2.173-1.576-3.364-3.59-3.353-5.669.023-4.506 5.738-8.29 12.498-8.29z\"></path><path d=\"m18.249 131.887h9.834v6.978c0 1.294 1.048 2.342 2.342 2.342h6.068l17.952 134.068c.506 5.594 5.124 9.812 10.74 9.812h93.153c5.616 0 10.234-4.218 10.729-9.712l17.962-134.168h6.068c1.294 0 2.342-1.048 2.342-2.342v-6.978h9.834c1.294 0 2.342-1.048 2.342-2.342 0-48.44-30.182-91.973-69.232-106.031-.087-4.708-3.938-8.514-8.666-8.514h-35.912c-4.561 0-8.303 3.541-8.641 8.128-39.95 13.362-69.257 55.994-69.257 106.417 0 1.293 1.049 2.342 2.342 2.342zm146.166 142.965c-.287 3.164-2.899 5.55-6.076 5.55h-93.153c-3.177 0-5.789-2.386-6.087-5.65l-17.88-133.546h141.085zm26.342-138.329h-157.99v-14.04h157.99zm-96.952-116.839h35.913c2.201 0 3.991 1.79 3.991 4.119 0 2.201-1.79 3.991-3.991 3.991h-35.913c-2.201 0-3.991-1.79-3.991-4.119.001-2.202 1.791-3.991 3.991-3.991zm-7.716 8.062c1.439 2.804 4.354 4.73 7.716 4.73h35.913c3.224 0 6.037-1.772 7.532-4.429 36.435 13.299 64.712 53.776 65.658 99.156h-7.468v-7.062c0-1.294-1.048-2.342-2.342-2.342h-162.673c-1.294 0-2.342 1.048-2.342 2.342v7.062h-7.471c.882-47.109 28.283-86.73 65.477-99.457z\"></path><path d=\"m246.57 117.978c4.223-.04 8.01-2.417 9.883-6.203l3.311-6.694c1.74-3.516 1.523-7.595-.578-10.909s-5.661-5.267-9.621-5.174l-6.716.127c-3.88.073-7.382 2.108-9.366 5.444-1.985 3.334-2.103 7.382-.317 10.828l3.405 6.567c1.927 3.718 5.71 6.015 9.89 6.015.037-.001.073-.001.109-.001zm-5.841-8.17-3.405-6.567c-1.035-1.997-.967-4.344.184-6.277 1.151-1.934 3.181-3.114 5.431-3.157l6.716-.127c.042-.001.084-.001.126-.001 2.224 0 4.255 1.115 5.451 3 1.218 1.921 1.343 4.286.335 6.324l-3.311 6.694c-1.102 2.228-3.244 3.572-5.729 3.596-.022.001-.043.001-.066.001-2.46.001-4.598-1.299-5.732-3.486z\"></path><path d=\"m212.858 282.884c.074 1.237 1.098 2.202 2.337 2.202h.005l9.409-.018h.004.009.004l53.945-.103c1.241-.002 2.264-.972 2.333-2.211l3.668-65.635c.431-4.485-1.06-8.968-4.092-12.299-3.026-3.324-7.336-5.229-11.83-5.229-.01 0-.021 0-.03 0l-12.172.023-.194-71.187c.144-.15.277-.314.38-.507 1.041-1.936 2.314-4.071 3.661-6.332 4.801-8.051 10.241-17.175 10.35-25.515.053-4.03-1.451-7.672-4.35-10.534-4.556-4.5-12.376-6.948-21.511-6.717-8.365.213-15.224 2.718-19.313 7.055-2.843 3.014-4.271 6.844-4.13 11.075.243 7.355 6.002 16.37 10.629 23.613 1.862 2.914 3.47 5.431 4.376 7.3.077.159.183.293.288.426l.194 71.36-12.022.023c-4.505.008-8.821 1.931-11.84 5.274s-4.494 7.832-4.052 12.222zm14.087-2.504-.241-61.943 40.01-.075.215 61.943zm8.973-162.337c-4.319-6.761-9.694-15.174-9.895-21.247-.099-2.998.862-5.591 2.857-7.706 3.226-3.421 8.917-5.405 16.024-5.586 7.732-.2 14.498 1.81 18.1 5.367 1.999 1.974 2.994 4.376 2.958 7.141-.092 7.082-5.191 15.633-9.69 23.178-1.15 1.929-2.217 3.745-3.183 5.482l-13.12.025c-1.027-1.901-2.435-4.124-4.051-6.654zm15.687 23.14.159 58.385-10.251.019-.159-58.385zm-10.264-4.665-.019-7.14 10.251-.019.019 7.14zm-24.898 71.57c2.135-2.365 5.187-3.724 8.373-3.73l43.812-.083h.021c3.178 0 6.226 1.347 8.366 3.698 2.144 2.356 3.199 5.527 2.887 8.792l-3.552 63.522-4.738.009-.218-62.737c.06-.987-.272-1.933-.949-2.683-.704-.775-1.669-1.201-2.718-1.201-.002 0-.005 0-.008 0l-42.051.08c-1.053.002-2.02.433-2.725 1.217-.682.76-1.001 1.712-.926 2.761l.243 62.656-4.86.009-3.818-63.602c-.317-3.17.725-6.345 2.861-8.708z\"></path></g></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:57:11', '2026-02-11 06:57:11', '', 31, 'https://mrarif.me/avalumcare/?p=418', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:57:11', '2026-02-11 06:57:11', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" viewBox=\"0 0 64 64\" width=\"64\"><g id=\"Captions\"></g><g id=\"Icons\"><g fill=\"rgb(0,0,0)\"><path d=\"m20 35.5c-2.322 0-4.403-1.474-5.18-3.667l-.942.334c.917 2.592 3.377 4.333 6.122 4.333s5.205-1.741 6.123-4.333l-.942-.334c-.778 2.193-2.859 3.667-5.181 3.667z\"></path><path d=\"m10.5 38h-1v1.5h-5v-3.5c0-3.033 2.467-5.5 5.5-5.5h5.551c.252 2.244 2.139 4 4.449 4s4.197-1.756 4.449-4h5.051v2.22h1v-2.198c.714.064 1.401.265 2.05.602l.46-.888c-.942-.488-1.955-.736-3.01-.736h-5.5v-1.502c2.214-.926 3.804-3.044 3.977-5.547 1.151-.223 2.023-1.236 2.023-2.451 0-1.207-.86-2.217-2-2.449v-3.551c0-3.584-2.916-6.5-6.5-6.5h-4c-3.584 0-6.5 2.916-6.5 6.5v3.551c-1.14.232-2 1.242-2 2.449 0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-5.5c-3.584 0-6.5 2.916-6.5 6.5v16c0 .276.224.5.5.5h15.6v-1h-9.1zm19-18c0 .652-.418 1.208-1 1.415v-2.829c.582.206 1 .762 1 1.414zm-11.5-11.5h4c3.033 0 5.5 2.467 5.5 5.5v3.408c-.581-.207-1-.757-1-1.408v-2c0-1.378-1.122-2.5-2.5-2.5h-.184c-.211 0-.4.133-.471.333-.354.997-1.297 1.667-2.345 1.667h-2c-1.048 0-1.991-.67-2.345-1.667-.071-.199-.26-.333-.471-.333h-.184c-1.378 0-2.5 1.122-2.5 2.5v2c0 .651-.419 1.201-1 1.408v-3.408c0-3.033 2.467-5.5 5.5-5.5zm-7.5 11.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-3.55c1.14-.232 2-1.242 2-2.45v-2c0-.778.595-1.419 1.354-1.493.576 1.205 1.799 1.993 3.146 1.993h2c1.347 0 2.57-.788 3.146-1.993.759.074 1.354.715 1.354 1.493v2c0 1.208.86 2.217 2 2.45v3.55c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm5.5 6.5h4c.517 0 1.018-.067 1.5-.182v1.682c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5v-1.682c.482.115.983.182 1.5.182zm-8.5 12v1h-5v-1zm-5 2h5v9h-5z\"></path><path d=\"m52.5 38h-1v13.5h-3v-19h3.5c3.033 0 5.5 2.467 5.5 5.5v2h1v-2c0-3.584-2.916-6.5-6.5-6.5h-3.5v-1h3.5c.674 0 1.302-.263 1.759-.732.478-.466.741-1.094.741-1.768 0-1.425-.686-2.761-1.817-3.607 1.045-.299 1.817-1.253 1.817-2.393v-6c0-4.687-3.813-8.5-8.5-8.5h-4c-4.687 0-8.5 3.813-8.5 8.5v6c0 1.215.872 2.228 2.023 2.452.173 2.503 1.763 4.621 3.977 5.547v1.501h-3.5c-1.896 0-3.693.825-4.929 2.264l.759.651c1.045-1.217 2.566-1.915 4.17-1.915h3.5v6.87h1v-1.913c1.038.671 2.245 1.042 3.5 1.042s2.462-.372 3.5-1.042v14.043h-7.1v1h17.6v-1h-5.5zm1-10c0 .402-.156.776-.448 1.061-.276.283-.65.439-1.052.439h-2.552c1.446-.91 2.511-2.37 2.893-4.088.725.658 1.159 1.593 1.159 2.588zm-1-4.585v-2.829c.582.207 1 .763 1 1.415s-.418 1.207-1 1.414zm-10.5-14.915h4c4.136 0 7.5 3.364 7.5 7.5v4.013c-.304-.23-.657-.395-1.046-.467-.231-2.266-2.128-4.046-4.454-4.046h-8c-2.326 0-4.223 1.78-4.454 4.046-.389.072-.742.237-1.046.467v-4.013c0-4.136 3.364-7.5 7.5-7.5zm-7.5 13.5c0-.652.418-1.208 1-1.415v2.829c-.582-.206-1-.762-1-1.414zm2 2v-4c0-1.93 1.57-3.5 3.5-3.5h8c1.93 0 3.5 1.57 3.5 3.5v4c0 3.033-2.467 5.5-5.5 5.5h-4c-3.033 0-5.5-2.467-5.5-5.5zm7.5 13.5c-1.289 0-2.518-.464-3.5-1.287v-5.894c.482.115.983.182 1.5.182h4c.517 0 1.018-.067 1.5-.182v5.894c-.982.823-2.211 1.287-3.5 1.287z\"></path><path d=\"m58 41.5c-1.378 0-2.5 1.122-2.5 2.5v4c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5v-4c0-1.378-1.122-2.5-2.5-2.5zm1.5 6.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z\"></path><path d=\"m30 35.5c-5.79 0-10.5 4.71-10.5 10.5s4.71 10.5 10.5 10.5 10.5-4.71 10.5-10.5-4.71-10.5-10.5-10.5zm0 20c-5.238 0-9.5-4.262-9.5-9.5s4.262-9.5 9.5-9.5 9.5 4.262 9.5 9.5-4.262 9.5-9.5 9.5z\"></path><path d=\"m33 40.5c-1.129 0-2.194.431-3 1.197-.806-.767-1.871-1.197-3-1.197-2.402 0-4.357 1.955-4.357 4.357 0 1.157.449 2.247 1.275 3.08l5.119 5.162c.257.258.599.401.963.401s.706-.143.963-.401l5.129-5.172.001-.001c.814-.821 1.263-1.911 1.263-3.068.001-2.403-1.954-4.358-4.356-4.358zm2.384 6.721-5.13 5.173c-.136.137-.373.136-.507 0l-5.13-5.173c-.627-.633-.973-1.473-.973-2.364 0-1.851 1.506-3.357 3.357-3.357 1.018 0 1.97.455 2.611 1.248.189.234.588.234.777 0 .641-.793 1.593-1.248 2.611-1.248 1.851 0 3.357 1.506 3.357 3.357 0 .892-.346 1.731-.973 2.364z\"></path></g></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care 										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"&#x421;&#x43B;&#x43E;&#x439;_1\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g fill=\"rgb(0,0,0)\"><path d=\"m75.906 212.782c3.194 2.317 7.409 3.603 11.869 3.623h.103c.477 0 .947-.025 1.414-.054-.246.397-.49.797-.715 1.216-2.575 4.789-3.286 10.064-1.951 14.474.935 3.087 2.784 5.44 5.348 6.807 1.528.814 3.196 1.199 4.915 1.199 5.425 0 11.329-3.847 14.734-10.179.091-.168.161-.342.247-.511.314.597.657 1.188 1.031 1.767 3.672 5.7 9.385 9.019 14.561 9.019 2.049 0 4.015-.521 5.735-1.62 2.449-1.566 4.108-4.059 4.796-7.21.983-4.501-.142-9.704-3.086-14.273-.063-.098-.134-.187-.199-.284.221.012.439.035.661.042.208.005.414.008.621.008 9.21 0 16.758-5.543 16.953-12.567.1-3.629-1.701-7.038-5.071-9.6-3.14-2.388-7.325-3.769-11.784-3.889-.472-.012-.936.002-1.399.018.065-.093.139-.173.202-.268 3.04-4.513 4.272-9.694 3.381-14.215-.624-3.161-2.23-5.685-4.645-7.297-5.986-3.994-15.155-.855-20.444 6.997-.404.6-.771 1.213-1.111 1.834-.141-.307-.268-.617-.424-.921-4.326-8.415-13.064-12.602-19.479-9.328-2.59 1.322-4.484 3.644-5.475 6.714-1.415 4.385-.802 9.671 1.682 14.501.288.561.603 1.096.928 1.619-.464-.03-.929-.054-1.399-.056-.035 0-.069 0-.103 0-9.447 0-17.146 5.793-17.181 12.951-.02 3.629 1.857 6.997 5.285 9.483zm31.591 14.867c-3.209 5.968-9.309 9.199-13.32 7.065-1.822-.97-2.674-2.728-3.068-4.03-.963-3.179-.367-7.253 1.594-10.899 1.316-2.448 3.122-4.421 5.067-5.767.502-.269.981-.559 1.442-.866.234-.12.468-.219.703-.319.3.383.619.754.958 1.111 2.307 2.426 5.296 3.968 8.557 4.476.37 2.867-.3 6.193-1.933 9.229zm25.919 2.664c-.29 1.331-1.002 3.151-2.742 4.262-3.833 2.449-10.168-.293-13.836-5.989-1.574-2.443-2.477-5.146-2.64-7.665.03-.599.03-1.192 0-1.779.022-.257.069-.504.109-.754 3.583-.611 6.75-2.483 8.999-5.164 2.786.965 5.632 3.201 7.661 6.351 2.242 3.479 3.157 7.493 2.449 10.738zm2.545-34.882c3.487.094 6.71 1.137 9.075 2.936 2.137 1.624 3.282 3.664 3.224 5.742-.126 4.522-5.947 8.176-12.765 8.006-3.487-.094-6.71-1.137-9.075-2.936-.186-.141-.355-.29-.525-.437.537-1.47.861-3.043.907-4.69.053-1.916-.263-3.784-.902-5.533 2.363-1.968 6.033-3.214 10.061-3.088zm-18.894-16.831c2.805-4.164 7.039-6.681 10.582-6.681 1.24 0 2.397.309 3.376.963 1.714 1.144 2.388 2.975 2.651 4.308.643 3.26-.356 7.257-2.67 10.694-2.072 3.077-4.924 5.246-7.702 6.173-.201-.239-.396-.483-.613-.711-2.257-2.373-5.167-3.897-8.345-4.438-.496-3.188.496-7.004 2.721-10.308zm-4.999 14.761c2.763.074 5.331 1.215 7.229 3.212 1.896 1.994 2.898 4.604 2.822 7.349-.156 5.671-4.904 10.12-10.623 10.007-2.763-.075-5.33-1.215-7.229-3.212-1.896-1.994-2.898-4.604-2.822-7.349.156-5.671 4.946-10.144 10.623-10.007zm-20.918-17.638c.419-1.297 1.304-3.041 3.146-3.98.816-.416 1.711-.613 2.647-.613 3.715 0 8.065 3.1 10.538 7.91 1.685 3.278 2.273 6.875 1.659 9.858-3.517.618-6.621 2.482-8.845 5.117-2.934-1.078-5.883-3.728-7.755-7.371-1.891-3.677-2.41-7.759-1.39-10.921zm-3.349 19.309h.081c2.931.013 5.684.708 7.919 1.962.15.092.302.177.454.264.263.162.523.326.768.505.257.186.497.38.726.577-.584 1.53-.939 3.174-.987 4.899-.051 1.842.245 3.638.835 5.328-2.328 1.929-5.888 3.185-9.801 3.155-3.488-.015-6.734-.986-9.14-2.731-2.173-1.576-3.364-3.59-3.353-5.669.023-4.506 5.738-8.29 12.498-8.29z\"></path><path d=\"m18.249 131.887h9.834v6.978c0 1.294 1.048 2.342 2.342 2.342h6.068l17.952 134.068c.506 5.594 5.124 9.812 10.74 9.812h93.153c5.616 0 10.234-4.218 10.729-9.712l17.962-134.168h6.068c1.294 0 2.342-1.048 2.342-2.342v-6.978h9.834c1.294 0 2.342-1.048 2.342-2.342 0-48.44-30.182-91.973-69.232-106.031-.087-4.708-3.938-8.514-8.666-8.514h-35.912c-4.561 0-8.303 3.541-8.641 8.128-39.95 13.362-69.257 55.994-69.257 106.417 0 1.293 1.049 2.342 2.342 2.342zm146.166 142.965c-.287 3.164-2.899 5.55-6.076 5.55h-93.153c-3.177 0-5.789-2.386-6.087-5.65l-17.88-133.546h141.085zm26.342-138.329h-157.99v-14.04h157.99zm-96.952-116.839h35.913c2.201 0 3.991 1.79 3.991 4.119 0 2.201-1.79 3.991-3.991 3.991h-35.913c-2.201 0-3.991-1.79-3.991-4.119.001-2.202 1.791-3.991 3.991-3.991zm-7.716 8.062c1.439 2.804 4.354 4.73 7.716 4.73h35.913c3.224 0 6.037-1.772 7.532-4.429 36.435 13.299 64.712 53.776 65.658 99.156h-7.468v-7.062c0-1.294-1.048-2.342-2.342-2.342h-162.673c-1.294 0-2.342 1.048-2.342 2.342v7.062h-7.471c.882-47.109 28.283-86.73 65.477-99.457z\"></path><path d=\"m246.57 117.978c4.223-.04 8.01-2.417 9.883-6.203l3.311-6.694c1.74-3.516 1.523-7.595-.578-10.909s-5.661-5.267-9.621-5.174l-6.716.127c-3.88.073-7.382 2.108-9.366 5.444-1.985 3.334-2.103 7.382-.317 10.828l3.405 6.567c1.927 3.718 5.71 6.015 9.89 6.015.037-.001.073-.001.109-.001zm-5.841-8.17-3.405-6.567c-1.035-1.997-.967-4.344.184-6.277 1.151-1.934 3.181-3.114 5.431-3.157l6.716-.127c.042-.001.084-.001.126-.001 2.224 0 4.255 1.115 5.451 3 1.218 1.921 1.343 4.286.335 6.324l-3.311 6.694c-1.102 2.228-3.244 3.572-5.729 3.596-.022.001-.043.001-.066.001-2.46.001-4.598-1.299-5.732-3.486z\"></path><path d=\"m212.858 282.884c.074 1.237 1.098 2.202 2.337 2.202h.005l9.409-.018h.004.009.004l53.945-.103c1.241-.002 2.264-.972 2.333-2.211l3.668-65.635c.431-4.485-1.06-8.968-4.092-12.299-3.026-3.324-7.336-5.229-11.83-5.229-.01 0-.021 0-.03 0l-12.172.023-.194-71.187c.144-.15.277-.314.38-.507 1.041-1.936 2.314-4.071 3.661-6.332 4.801-8.051 10.241-17.175 10.35-25.515.053-4.03-1.451-7.672-4.35-10.534-4.556-4.5-12.376-6.948-21.511-6.717-8.365.213-15.224 2.718-19.313 7.055-2.843 3.014-4.271 6.844-4.13 11.075.243 7.355 6.002 16.37 10.629 23.613 1.862 2.914 3.47 5.431 4.376 7.3.077.159.183.293.288.426l.194 71.36-12.022.023c-4.505.008-8.821 1.931-11.84 5.274s-4.494 7.832-4.052 12.222zm14.087-2.504-.241-61.943 40.01-.075.215 61.943zm8.973-162.337c-4.319-6.761-9.694-15.174-9.895-21.247-.099-2.998.862-5.591 2.857-7.706 3.226-3.421 8.917-5.405 16.024-5.586 7.732-.2 14.498 1.81 18.1 5.367 1.999 1.974 2.994 4.376 2.958 7.141-.092 7.082-5.191 15.633-9.69 23.178-1.15 1.929-2.217 3.745-3.183 5.482l-13.12.025c-1.027-1.901-2.435-4.124-4.051-6.654zm15.687 23.14.159 58.385-10.251.019-.159-58.385zm-10.264-4.665-.019-7.14 10.251-.019.019 7.14zm-24.898 71.57c2.135-2.365 5.187-3.724 8.373-3.73l43.812-.083h.021c3.178 0 6.226 1.347 8.366 3.698 2.144 2.356 3.199 5.527 2.887 8.792l-3.552 63.522-4.738.009-.218-62.737c.06-.987-.272-1.933-.949-2.683-.704-.775-1.669-1.201-2.718-1.201-.002 0-.005 0-.008 0l-42.051.08c-1.053.002-2.02.433-2.725 1.217-.682.76-1.001 1.712-.926 2.761l.243 62.656-4.86.009-3.818-63.602c-.317-3.17.725-6.345 2.861-8.708z\"></path></g></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone 										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:57:11', '2026-02-11 06:57:11', '', 31, 'https://mrarif.me/avalumcare/?p=419', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(421, 1, '2026-02-11 06:57:22', '2026-02-11 06:57:22', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:57:22', '2026-02-11 06:57:22', '', 10, 'https://mrarif.me/avalumcare/?p=421', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(422, 1, '2026-02-11 06:57:23', '2026-02-11 06:57:23', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 256 256\"><g><path d=\"m99.2348 43.7789c3.9221 0 7.1125-3.1907 7.1125-7.1125 0-3.9224-3.1904-7.1133-7.1125-7.1133-3.9219 0-7.1128 3.1907-7.1128 7.1127 0 3.9222 3.1909 7.1131 7.1128 7.1131zm0-8.7258c.8889 0 1.6125.7238 1.6125 1.6133 0 .8892-.7236 1.6125-1.6125 1.6125-.8894 0-1.6128-.7236-1.6128-1.6132 0-.8893.7234-1.6126 1.6128-1.6126z\"></path><path d=\"m52.1315 103.838h94.2063c1.5188 0 2.75-1.2313 2.75-2.75v-21.1955c0-1.5187-1.2312-2.75-2.75-2.75h-94.2063c-1.519 0-2.75 1.2313-2.75 2.75v21.1954c0 1.5188 1.231 2.7501 2.75 2.7501zm2.75-21.1955h88.7063v15.6955h-88.7063z\"></path><path d=\"m81.473 117.235h64.865v5.5h-64.865z\"></path><path d=\"m52.1315 137.9036h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.7122l4.0342-4.0342-3.8887-3.8892-4.6365 4.6364h-16.5078c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5187 1.231 2.7501 2.75 2.7501zm2.75-18.2491h8.2578l-4.9048 4.9047 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m52.1315 168.8656h18.2488c1.5188 0 2.75-1.2314 2.75-2.75v-17.712l4.0342-4.0343-3.8887-3.8892-4.6362 4.6364h-16.5081c-1.519 0-2.75 1.2313-2.75 2.75v18.2491c0 1.5185 1.231 2.75 2.75 2.75zm2.75-18.2492h8.2581l-4.905 4.9049 3.8887 3.8892 5.5071-5.507v9.462h-12.7489z\"></path><path d=\"m52.1315 199.8277h18.2488c1.5188 0 2.75-1.2313 2.75-2.75v-17.712l4.0342-4.0342-3.8887-3.8893-4.6365 4.6365h-16.5078c-1.519 0-2.75 1.2312-2.75 2.75v18.249c0 1.5187 1.231 2.75 2.75 2.75zm2.75-18.249h8.2578l-4.9048 4.9045 3.8887 3.8892 5.5071-5.5068v9.4622h-12.7488z\"></path><path d=\"m149.033 180.371h5.5v6.736h-5.5z\"></path><path d=\"m236.25 193.0494h-2.0327c-.0828-11.5164-4.0134-23.4163-10.8252-32.7062-6.6633-9.0879-15.2092-14.5135-22.8611-14.5135-2.1775 0-4.4277.4409-6.6863 1.2791-.7361-.1924-1.5042-.3004-2.2942-.3093l-1.9749-.0222c-1.0862-.0125-2.0823-.4657-2.8049-1.2767-.7222-.811-1.0586-1.8522-.9458-2.9326l.2471-2.3693c.3438-3.2927-1.0332-6.442-3.6846-8.4248-.5356-.4009-1.1035-.735-1.6924-1.0079v-71.7807c0-10.6144-8.6357-19.25-19.25-19.25h-13.6704c-.7664-3.7611-4.0994-6.6-8.0835-6.6h-22.687c-1.644-8.3591-8.9998-14.5823-17.7693-14.5823-8.7693 0-16.1255 6.2231-17.7698 14.5823h-22.6867c-3.9844 0-7.3171 2.8389-8.0837 6.6h-13.6705c-10.6143 0-19.25 8.6356-19.25 19.25v161.5236c0 10.6146 8.6357 19.25 19.25 19.25h112.7527 45.2634c24.2393 0 43.9597-19.7202 43.9597-43.9595.0001-1.5187-1.2311-2.75-2.7499-2.75zm-35.719-41.7197c12.3586 0 28.012 19.5985 28.1858 41.7197h-6.1277c-.6108-11.6382-10.2705-20.9187-22.0581-20.9187-6.5046 0-12.3604 2.8274-16.4065 7.3162-1.6321-3.2808-3.7495-6.2766-6.2566-8.8993 5.7038-11.368 14.843-19.2179 22.6631-19.2179zm16.5439 41.7197h-29.2773c-.1743-2.6207-.6301-5.1643-1.3367-7.604 2.9348-4.6882 8.1428-7.8147 14.0701-7.8147 8.7534 0 15.9404 6.8159 16.5439 15.4187zm-53.5894-7.5098-5.8335 3.3679 2.3914 4.1418h-16.5212l2.3914-4.1418-5.8337-3.3679-2.75 4.7629 4.7578 2.7468h-9.386c1.1956-9.4685 9.2937-16.8169 19.0813-16.8169s17.8855 7.3484 19.0811 16.8169h-9.3862l4.7578-2.7468zm-11.7026-14.8071c-12.8242 0-23.3979 9.8083-24.6191 22.3169h-5.8811c1.24-15.7466 14.4409-28.1829 30.5002-28.1829 16.0596 0 29.2603 12.4363 30.5005 28.1829h-5.8818c-1.2212-12.5086-11.795-22.3169-24.6187-22.3169zm27.3106-34.5547c1.1016.8242 1.6516 2.0815 1.5088 3.4502l-.2471 2.3691c-.272 2.5996.5698 5.2102 2.3088 7.1619.9446 1.0598 2.1165 1.8689 3.4048 2.4012-2.9736 2.3153-5.8271 5.2748-8.3992 8.783-1.4846 2.0245-2.8232 4.179-4.0244 6.4205-2.3167-1.7684-4.8511-3.2632-7.5579-4.436l2.9282-12.3308-5.3506-1.2708-2.802 11.7981c-2.3057-.5994-4.6997-.9761-7.1587-1.1057l-4.9941-8.6501-4.7632 2.75 3.5298 6.1138c-11.2415 1.3429-20.9158 7.8621-26.5498 17.1089-.1328-.0674-.2612-.1425-.3979-.2034l-2.1758-.9707c-1.2563-.5601-2.0698-1.6653-2.2327-3.0311-.1633-1.3661.3684-2.6312 1.4578-3.4713l2.0054-1.5471c2.0356-1.5695 3.3425-3.9373 3.5847-6.4963.2429-2.5588-.5955-5.1302-2.2998-7.054l-1.0195-1.1519c-.9392-1.0604-1.2131-2.4891-.7332-3.822.4807-1.3325 1.6033-2.2581 3.0037-2.475l2.2344-.3467c4.915-.7618 7.4319-6.392 7.0259-11.3945-.0054-.0701-.0139-.1396-.0247-.2089-.0044-.0248-.3611-2.4944 2.4497-4.1169 2.6726-1.5424 4.616-.1915 4.79-.063.0789.0688.0825.0667.1685.126 4.1299 2.8529 10.2646 3.4878 13.3811-.3875l1.4175-1.762c.8889-1.1035 2.2515-1.6138 3.6448-1.3635 1.3948.2502 2.4954 1.2021 2.9443 2.5459l.4873 1.4585c.8137 2.4382 2.6211 4.45 4.9585 5.5194 2.3369 1.0688 5.0413 1.1219 7.418.1437l2.3435-.9636c1.2724-.5229 2.6335-.351 3.7351.4726zm-31.1524-86.8303v-4.1122h13.5039c7.5818 0 13.75 6.1681 13.75 13.75v71.0729c-.6514.1171-1.2976.3008-1.9287.5605l-2.3435.9636c-.9875.4063-2.0657.386-3.0378-.0588-.9705-.4441-1.6919-1.2466-2.0303-2.2599l-.4136-1.2386v-62.1436c0-4.549-3.7007-8.25-8.25-8.25h-11.1267c1.2019-2.5105 1.8767-5.3198 1.8767-8.2839zm-91.9128-7.9622c0-1.5164 1.2336-2.75 2.75-2.75h25.1135c1.4653 0 2.6733-1.1492 2.7468-2.6128.3352-6.7117 5.8684-11.9695 12.5962-11.9695s12.2607 5.2578 12.5959 11.9695c.0735 1.4636 1.2815 2.6128 2.7466 2.6128h25.1138c1.5161 0 2.75 1.2336 2.75 2.75v7.9622c0 7.5818-6.1682 13.75-13.75 13.75h-58.9128c-7.5818 0-13.75-6.1682-13.75-13.75zm.332 21.7461c3.47 3.3789 8.2036 5.4661 13.418 5.4661h58.9128c5.2141 0 9.9478-2.0872 13.418-5.4661h15.082c1.5164 0 2.75 1.2339 2.75 2.75v56.2004c-.5615-.2166-1.1501-.384-1.7632-.4941-3.4033-.6096-6.7329.6338-8.9011 3.3296l-1.4175 1.7622c-.9736 1.2075-3.9993.6353-5.9038-.6453-1.8718-1.4521-6.1597-3.0833-10.9006-.3462-1.7822 1.0288-2.9971 2.311-3.8032 3.6352h-45.7791v5.5h44.3835c.0112.1675.0273.3279.0479.4785.1567 2.2897-.8599 5.197-2.3928 5.4348l-2.2344.3467c-3.4192.53-6.1611 2.7897-7.3347 6.0446-.1277.3539-.2295.7108-.3137 1.0688h-32.1558v5.5h32.5505c.3948.9902.9646 1.9254 1.7085 2.765l1.0195 1.1519c.6599.7449.9905 1.6866.9517 2.6716h-36.2302v5.5h31.5754c-1.8337 1.9824-2.7173 4.6495-2.3889 7.4016.2832 2.3767 1.4309 4.4785 3.1858 5.9722h-32.3723v5.5h35.8611c-.6665 2.1187-1.135 4.3228-1.4004 6.5884h-34.4607v5.5h24.3691c.1799 8.4331 2.7424 16.2858 7.0459 22.9153h-71.6096c-1.5161 0-2.75-1.2338-2.75-2.75v-151.0312c0-1.5161 1.2339-2.75 2.75-2.75zm-19.3362 171.1275c-7.5818 0-13.75-6.1682-13.75-13.75v-161.5236c0-7.5819 6.1682-13.75 13.75-13.75h13.5042v4.1122c0 2.9641.6746 5.7734 1.8767 8.2839h-11.127c-4.5493 0-8.25 3.701-8.25 8.25v151.0313c0 4.5491 3.7007 8.25 8.25 8.25h75.8184c3.2639 3.6292 7.1226 6.7109 11.4202 9.0962zm158.0161 0h-45.2634c-20.2822 0-36.9478-15.7808-38.3618-35.7095h121.9875c-1.414 19.9287-18.08 35.7095-38.3623 35.7095z\"></path></g></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:57:23', '2026-02-11 06:57:23', '', 10, 'https://mrarif.me/avalumcare/?p=422', 0, 'revision', '', 0),
(424, 1, '2026-02-11 06:57:32', '2026-02-11 06:57:32', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:57:32', '2026-02-11 06:57:32', '', 10, 'https://mrarif.me/avalumcare/?p=424', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(425, 1, '2026-02-11 06:57:33', '2026-02-11 06:57:33', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:57:33', '2026-02-11 06:57:33', '', 10, 'https://mrarif.me/avalumcare/?p=425', 0, 'revision', '', 0),
(426, 1, '2026-02-11 06:57:33', '2026-02-11 06:57:33', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 06:57:33', '2026-02-11 06:57:33', '', 10, 'https://mrarif.me/avalumcare/?p=426', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(427, 1, '2026-02-11 06:57:42', '2026-02-11 06:57:42', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:57:42', '2026-02-11 06:57:42', '', 31, 'https://mrarif.me/avalumcare/?p=427', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:57:42', '2026-02-11 06:57:42', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:57:42', '2026-02-11 06:57:42', '', 31, 'https://mrarif.me/avalumcare/?p=428', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(429, 1, '2026-02-11 06:57:42', '2026-02-11 06:57:42', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:57:42', '2026-02-11 06:57:42', '', 31, 'https://mrarif.me/avalumcare/?p=429', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(430, 1, '2026-02-11 06:58:18', '2026-02-11 06:58:18', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:58:18', '2026-02-11 06:58:18', '', 31, 'https://mrarif.me/avalumcare/?p=430', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(431, 1, '2026-02-11 06:58:18', '2026-02-11 06:58:18', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n														Learn More', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:58:18', '2026-02-11 06:58:18', '', 31, 'https://mrarif.me/avalumcare/?p=431', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(432, 1, '2026-02-11 06:58:19', '2026-02-11 06:58:19', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:58:19', '2026-02-11 06:58:19', '', 31, 'https://mrarif.me/avalumcare/?p=432', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:58:51', '2026-02-11 06:58:51', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:58:51', '2026-02-11 06:58:51', '', 31, 'https://mrarif.me/avalumcare/?p=433', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(434, 1, '2026-02-11 06:58:51', '2026-02-11 06:58:51', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:58:51', '2026-02-11 06:58:51', '', 31, 'https://mrarif.me/avalumcare/?p=434', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 06:58:51', '2026-02-11 06:58:51', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 06:58:51', '2026-02-11 06:58:51', '', 31, 'https://mrarif.me/avalumcare/?p=435', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(442, 1, '2026-02-11 07:00:27', '2026-02-11 07:00:27', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:00:27', '2026-02-11 07:00:27', '', 10, 'https://mrarif.me/avalumcare/?p=442', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:00:11', '2026-02-11 07:00:11', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:00:11', '2026-02-11 07:00:11', '', 31, 'https://mrarif.me/avalumcare/?p=437', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(438, 1, '2026-02-11 07:00:11', '2026-02-11 07:00:11', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:00:11', '2026-02-11 07:00:11', '', 31, 'https://mrarif.me/avalumcare/?p=438', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:00:11', '2026-02-11 07:00:11', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:00:11', '2026-02-11 07:00:11', '', 31, 'https://mrarif.me/avalumcare/?p=439', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(440, 1, '2026-02-11 07:00:26', '2026-02-11 07:00:26', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:00:26', '2026-02-11 07:00:26', '', 10, 'https://mrarif.me/avalumcare/?p=440', 0, 'revision', '', 0),
(441, 1, '2026-02-11 07:00:26', '2026-02-11 07:00:26', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n														Learn More													\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n														Learn More													\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:00:26', '2026-02-11 07:00:26', '', 10, 'https://mrarif.me/avalumcare/?p=441', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:00:33', '2026-02-11 07:00:33', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:00:33', '2026-02-11 07:00:33', '', 31, 'https://mrarif.me/avalumcare/?p=443', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(444, 1, '2026-02-11 07:00:33', '2026-02-11 07:00:33', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:00:33', '2026-02-11 07:00:33', '', 31, 'https://mrarif.me/avalumcare/?p=444', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:03:23', '2026-02-11 07:03:23', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:03:23', '2026-02-11 07:03:23', '', 31, 'https://mrarif.me/avalumcare/?p=452', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:00:33', '2026-02-11 07:00:33', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:00:33', '2026-02-11 07:00:33', '', 31, 'https://mrarif.me/avalumcare/?p=445', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(446, 1, '2026-02-11 07:02:02', '2026-02-11 07:02:02', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:02:02', '2026-02-11 07:02:02', '', 10, 'https://mrarif.me/avalumcare/?p=446', 0, 'revision', '', 0),
(447, 1, '2026-02-11 07:02:02', '2026-02-11 07:02:02', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:02:02', '2026-02-11 07:02:02', '', 10, 'https://mrarif.me/avalumcare/?p=447', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:02:03', '2026-02-11 07:02:03', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as </p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:02:03', '2026-02-11 07:02:03', '', 10, 'https://mrarif.me/avalumcare/?p=448', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(453, 1, '2026-02-11 07:04:03', '2026-02-11 07:04:03', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:04:03', '2026-02-11 07:04:03', '', 31, 'https://mrarif.me/avalumcare/?p=453', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:03:23', '2026-02-11 07:03:23', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:03:23', '2026-02-11 07:03:23', '', 31, 'https://mrarif.me/avalumcare/?p=450', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:03:23', '2026-02-11 07:03:23', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Companion Care												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:03:23', '2026-02-11 07:03:23', '', 31, 'https://mrarif.me/avalumcare/?p=451', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(454, 1, '2026-02-11 07:04:04', '2026-02-11 07:04:04', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:04:04', '2026-02-11 07:04:04', '', 31, 'https://mrarif.me/avalumcare/?p=454', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(455, 1, '2026-02-11 07:04:04', '2026-02-11 07:04:04', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:04:04', '2026-02-11 07:04:04', '', 31, 'https://mrarif.me/avalumcare/?p=455', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(456, 1, '2026-02-11 07:04:23', '2026-02-11 07:04:23', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as </p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:04:23', '2026-02-11 07:04:23', '', 10, 'https://mrarif.me/avalumcare/?p=456', 0, 'revision', '', 0),
(457, 1, '2026-02-11 07:04:23', '2026-02-11 07:04:23', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as </p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:04:23', '2026-02-11 07:04:23', '', 10, 'https://mrarif.me/avalumcare/?p=457', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:04:24', '2026-02-11 07:04:24', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:04:24', '2026-02-11 07:04:24', '', 10, 'https://mrarif.me/avalumcare/?p=458', 0, 'revision', '', 0),
(459, 1, '2026-02-11 07:05:21', '2026-02-11 07:05:21', '', 'smartphone_4446407', '', 'inherit', 'open', 'closed', '', 'smartphone_4446407', '', '', '2026-02-11 07:05:21', '2026-02-11 07:05:21', '', 10, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/smartphone_4446407.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(460, 1, '2026-02-11 07:05:34', '2026-02-11 07:05:34', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:05:34', '2026-02-11 07:05:34', '', 31, 'https://mrarif.me/avalumcare/?p=460', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(461, 1, '2026-02-11 07:05:34', '2026-02-11 07:05:34', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:05:34', '2026-02-11 07:05:34', '', 31, 'https://mrarif.me/avalumcare/?p=461', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 07:05:35', '2026-02-11 07:05:35', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:05:35', '2026-02-11 07:05:35', '', 31, 'https://mrarif.me/avalumcare/?p=462', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(463, 1, '2026-02-11 07:05:37', '2026-02-11 07:05:37', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:05:37', '2026-02-11 07:05:37', '', 10, 'https://mrarif.me/avalumcare/?p=463', 0, 'revision', '', 0),
(464, 1, '2026-02-11 07:05:37', '2026-02-11 07:05:37', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><title></title><path d=\"M444.76,247.16a80.41,80.41,0,0,0-54.64-42.91,78.77,78.77,0,1,0-70.35,0,80.14,80.14,0,0,0-40.13,22.42A102.6,102.6,0,0,0,204.29,176a80.95,80.95,0,1,0-75.07,0A103.7,103.7,0,0,0,39.91,278.6V420.81A67.87,67.87,0,0,0,107.7,488.6H271.12a37.81,37.81,0,0,0,37.77-37.77v-.66a37.69,37.69,0,0,0-12.76-28.27,47,47,0,0,0,38.66-46.16V288.63a5.11,5.11,0,0,0-10.22,0v87.11a36.73,36.73,0,0,1-36.68,36.68h-16l-.78,0H121V363.24H262a5.11,5.11,0,0,0,5.11-5.11V282.54a70,70,0,0,1,70-70h35.69a70.11,70.11,0,0,1,60.41,34.65,33,33,0,0,0-26.94,32.37v34.72a33,33,0,0,0,32.92,32.92,35.3,35.3,0,0,0,3.58-.2V483.49a5.11,5.11,0,0,0,10.22,0V344.19a33,33,0,0,0,19.12-29.87V279.6A33,33,0,0,0,444.76,247.16ZM96,104.34a70.72,70.72,0,1,1,70.72,70.72A70.79,70.79,0,0,1,96,104.34Zm160.89,178.2V353H121v-72.4a5.11,5.11,0,1,0-10.22,0V417.51a5.11,5.11,0,0,0,5.11,5.11h118l.4,0H271.9a27.58,27.58,0,0,1,26.77,27.53v.66a27.58,27.58,0,0,1-27.55,27.55H107.7a57.64,57.64,0,0,1-57.57-57.57V278.6a93.42,93.42,0,0,1,93.32-93.32H190A92.69,92.69,0,0,1,272.56,235,79.74,79.74,0,0,0,256.91,282.54ZM286.38,133.8a68.56,68.56,0,1,1,68.56,68.55A68.63,68.63,0,0,1,286.38,133.8ZM461.87,314.32a22.7,22.7,0,0,1-45.39,0V279.6a22.7,22.7,0,1,1,45.39,0Z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:05:37', '2026-02-11 07:05:37', '', 10, 'https://mrarif.me/avalumcare/?p=464', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(465, 1, '2026-02-11 07:05:38', '2026-02-11 07:05:38', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 07:05:38', '2026-02-11 07:05:38', '', 10, 'https://mrarif.me/avalumcare/?p=465', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(466, 1, '2026-02-11 07:06:44', '2026-02-11 07:06:44', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:06:44', '2026-02-11 07:06:44', '', 31, 'https://mrarif.me/avalumcare/?p=466', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(467, 1, '2026-02-11 07:06:44', '2026-02-11 07:06:44', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a >\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a >\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:06:44', '2026-02-11 07:06:44', '', 31, 'https://mrarif.me/avalumcare/?p=467', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(468, 1, '2026-02-11 07:06:44', '2026-02-11 07:06:44', '<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 6.82666 6.82666\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_391183224\"><g><path id=\"_391184328\" d=\"m5.0213 5.51493h-3.21594c-.0294567 0-.0533307-.023874-.0533307-.0533346v-4.16304c0-.0294567.023874-.0533307.0533307-.0533307h.924646c.0294567 0 .0533346.023874.0533346.0533307v.225835h1.26002v-.225835c0-.0294567.023874-.0533307.0533307-.0533307h.92463c.0294567 0 .0533307.023874.0533307.0533307v4.16306c-.00001575.0294567-.023874.0533228-.0533465.0533228zm-3.16261-.106657h3.10929v-4.05639h-.817976v.225835c0 .0294567-.023874.0533307-.0533346.0533307h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.225835h-.817976v4.05639z\"></path></g><g><path id=\"_391184208\" d=\"m5.92 5.51493h-5.01333c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h5.01333c.0294606 0 .0533346.023874.0533346.0533346s-.0238583.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183464\" d=\"m5.22462 5.86061h-3.62256c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h3.62256c.0294606 0 .0533346.023874.0533346.0533346s-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183392\" d=\"m4.09667 1.63106h-1.36667c-.0294606 0-.0533346-.023874-.0533346-.0533307v-.558339c0-.0294606.023874-.0533346.0533346-.0533346l1.36667.00000394c.0294606 0 .0533346.023874.0533346.0533346v.558339c0 .0294528-.023874.0533268-.0533346.0533268zm-1.31333-.106665h1.26002v-.451681h-1.26002z\"></path></g><g><path id=\"_391183752\" d=\"m3.95917 2.03193h-1.09167c-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.0294606.023874-.0533346.0533307-.0533346h1.09167c.0294567 0 .0533307.023874.0533307.0533346 0 .0294567-.023874.0533307-.0533307.0533307z\"></path></g><g><path id=\"_391183704\" d=\"m4.55951 2.49323h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183992\" d=\"m4.55951 2.85156h-2.29235c-.0294606 0-.0533346-.023874-.0533346-.0533346s.023874-.0533346.0533346-.0533346h2.29235c.0294567 0 .0533307.023874.0533307.0533346s-.0238622.0533346-.0533307.0533346z\"></path></g><g><path id=\"_391183872\" d=\"m3.41334 5.11407c-.53028 0-.961681-.431421-.961681-.961685s.431402-.961665.961681-.961665c.53028 0 .961673.431402.961673.961673 0 .530268-.431394.961677-.961673.961677zm0-1.81669c-.471461 0-.855016.383555-.855016.855004 0 .471461.383555.855031.855016.855031.471445 0 .855016-.383555.855016-.855031 0-.471449-.383571-.855004-.855016-.855004z\"></path></g><g><path id=\"_391183560\" d=\"m2.26717 3.58295c-.0294567 0-.0533307-.023874-.0533307-.0533346v-.416669c0-.0294567.023874-.0533307.0533307-.0533307.0294606 0 .0533346.023874.0533346.0533307v.416669c-.00001181.0294606-.0238898.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391183536\" d=\"m4.5595 3.58295c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.416669c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v.416669c0 .0294606-.0238583.0533346-.0533307.0533346z\"></path></g><g><g><path id=\"_391182624\" d=\"m1.50708 5.08502c-.0294567 0-.0533307-.023874-.0533307-.0533346v-1.2c0-.0294606.023874-.0533346.0533307-.0533346.0294606 0 .0533346.023874.0533346.0533346v1.2c0 .0294685-.023874.0533346-.0533346.0533346z\"></path></g><g><path id=\"_391182672\" d=\"m5.3196 2.55189c-.0294606 0-.0533346-.023874-.0533346-.0533346v-1.2c0-.0294567.023874-.0533307.0533346-.0533307.0294567 0 .0533307.023874.0533307.0533307v1.2c0 .0294449-.023878.0533346-.0533307.0533346z\"></path></g></g><g><g><path id=\"_391183008\" d=\"m3.41334 4.31556c-.0294606 0-.0533346-.023874-.0533346-.0533346 0-.0294567.023874-.0533307.0533346-.0533307.156083 0 .283083-.127004.283083-.283098 0-.156087-.127004-.283083-.283083-.283083-.156098 0-.283083.127004-.283083.283083 0 .0294567-.023874.0533307-.0533346.0533307-.0294567 0-.0533307-.023874-.0533307-.0533307 0-.214921.174835-.389752.389748-.389752s.389748.174839.389748.389752-.174827.389764-.389748.389764z\"></path></g><g><path id=\"_391183296\" d=\"m3.41334 4.53226c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.216701c0-.0294567.023874-.0533307.0533346-.0533307s.0533346.023874.0533346.0533307v.216697c0 .0294567-.023874.0533386-.0533346.0533386z\"></path></g><g><path id=\"_391182840\" d=\"m3.41334 4.76872c-.0294606 0-.0533346-.023874-.0533346-.0533346v-.056252c0-.0294606.023874-.0533346.0533346-.0533346s.0533346.023874.0533346.0533346v.056252c0 .0294606-.023874.0533346-.0533346.0533346z\"></path></g></g></g></g></svg>							\n												<h5>\n													Meal preparation												</h5>\n											<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special</p>										\n											<a href=\"https://mrarif.me/avalumcare/meal-preparation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 80 80\" width=\"512\"><path d=\"m10.31 47.53c.47 0 .91-.1 1.31-.27v20.48c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-36.97l13.92-11.79c.08-.06.14-.14.21-.2.06.06.12.13.19.19l13.93 11.79v36.98c0 1.54 1.25 2.79 2.79 2.79 1.38 0 2.57-1.03 2.77-2.4l1.57-11.1 1.57 11.1c.19 1.37 1.38 2.4 2.77 2.4 1.54 0 2.79-1.25 2.79-2.79v-20.48c.4.17.85.27 1.31.27 1.83 0 3.31-1.49 3.31-3.31v-16.94c0-2.94-2.39-5.34-5.34-5.34h-11.66l-11.92-8.3c-.75-.48-1.65-.64-2.52-.44-.61.14-1.14.45-1.57.87-.43-.42-.96-.73-1.56-.86-.88-.2-1.77-.04-2.55.46l-11.89 8.28h-11.66c-2.95 0-5.34 2.39-5.34 5.34v16.94c0 1.82 1.49 3.3 3.31 3.3zm30.88-31.78c.19-.3.48-.51.82-.59s.7-.02.96.15l12.15 8.46c.17.12.37.18.57.18h11.97c1.84 0 3.34 1.5 3.34 3.34v16.94c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.31v-10.23c0-.55-.45-1-1-1s-1 .45-1 1v33.74c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.06.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-37.44c0-.29-.13-.57-.35-.76l-14.29-12.1c-.5-.42-.63-1.14-.29-1.69zm-32.19 11.54c0-1.84 1.5-3.34 3.34-3.34h11.96c.2 0 .4-.06.57-.18l12.12-8.44c.3-.19.65-.25 1-.17.34.08.64.29.82.59.34.55.22 1.28-.29 1.7l-14.29 12.09c-.22.19-.35.47-.35.76v37.44c0 .44-.36.79-.79.79-.39 0-.73-.29-.79-.68l-2.56-18.11c-.07-.49-.49-.86-.99-.86s-.92.37-.99.86l-2.56 18.11c-.05.39-.39.68-.79.68-.44 0-.79-.36-.79-.79v-33.73c0-.55-.45-1-1-1s-1 .45-1 1v10.22c0 .72-.59 1.31-1.31 1.31s-1.31-.59-1.31-1.32z\"></path><path d=\"m18.75 9.46c-2.91 0-5.28 2.37-5.28 5.28s2.37 5.28 5.28 5.28 5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28zm0 8.56c-1.81 0-3.28-1.47-3.28-3.28s1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28-1.47 3.28-3.28 3.28z\"></path><path d=\"m55.97 14.74c0 2.91 2.37 5.28 5.28 5.28s5.28-2.37 5.28-5.28-2.37-5.28-5.28-5.28-5.28 2.37-5.28 5.28zm8.56 0c0 1.81-1.47 3.28-3.28 3.28s-3.28-1.47-3.28-3.28 1.47-3.28 3.28-3.28 3.28 1.47 3.28 3.28z\"></path></svg>							\n												<h5>\n													Companionship												</h5>\n											<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar.However, as you get older you may find</p>										\n											<a href=\"https://mrarif.me/avalumcare/companionship/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line_Expand\" data-name=\"Line Expand\" viewBox=\"0 0 64 64\" width=\"512\" height=\"512\"><path d=\"M28,43.75H56a.75.75,0,0,0,.75-.75V35a.75.75,0,0,0-.75-.75H28a.75.75,0,0,0-.75.75v8A.75.75,0,0,0,28,43.75Zm.75-8h26.5v6.5H28.75Z\"></path><path d=\"M52,52.75A3.25,3.25,0,1,0,55.25,56,3.254,3.254,0,0,0,52,52.75Zm0,5A1.75,1.75,0,1,1,53.75,56,1.752,1.752,0,0,1,52,57.75Z\"></path><path d=\"M32,52.75A3.25,3.25,0,1,0,35.25,56,3.254,3.254,0,0,0,32,52.75Zm0,5A1.75,1.75,0,1,1,33.75,56,1.752,1.752,0,0,1,32,57.75Z\"></path><path d=\"M63,27.25H59.75v-.777a10.806,10.806,0,0,0-3.808-8.207l1.729-3.458A.75.75,0,0,0,56.665,13.8h0a3.741,3.741,0,0,1-3.329,0,5.242,5.242,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006L50.05,18.25H37.214l1.457-2.914a.75.75,0,0,0-1.006-1.006h0a3.741,3.741,0,0,1-3.329,0,5.236,5.236,0,0,0-4.671,0h0a.751.751,0,0,0-.335,1.006l1.728,3.458a10.8,10.8,0,0,0-3.326,5.087A2.724,2.724,0,0,0,26,23.25H17.7l-3.307-6.886A8.711,8.711,0,0,0,16.25,11V8A7.75,7.75,0,0,0,.75,8V19a.75.75,0,0,0,.75.75H2.75V61A2.752,2.752,0,0,0,5.5,63.75H17.308A1.942,1.942,0,0,0,18.028,60L14.25,58.492V53.75h.25a.75.75,0,0,0,.75-.75V28.606a3.756,3.756,0,0,0,1.023.144H20.25V56a.75.75,0,0,0,.75.75h3.288a7.748,7.748,0,0,0,15.424,0h4.576a7.748,7.748,0,0,0,15.424,0H63a.75.75,0,0,0,.75-.75V28A.75.75,0,0,0,63,27.25ZM50.04,14.877a3.742,3.742,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H51.463Zm1.233,4.346h3.454a9.292,9.292,0,0,1,3.523,7.25v.777H47.75v-.777A9.289,9.289,0,0,1,51.273,19.223ZM36.75,19.75H48.631a10.794,10.794,0,0,0-2.381,6.723v.777h-9.5Zm-5.71-4.345a3.736,3.736,0,0,1,2.624.267,5.256,5.256,0,0,0,2.9.518l-1.031,2.061H32.463ZM28.75,27a9.287,9.287,0,0,1,3.523-7.25H35.25v7.5h-6.5Zm-4-2.251H26a1.25,1.25,0,0,1,0,2.5H24.75ZM2.888,18.25H2.25V8a6.25,6.25,0,0,1,12.5,0v3a7.214,7.214,0,0,1-1.315,4.139,6.328,6.328,0,0,0-1.022-.85A4.724,4.724,0,0,0,13.75,11V8a.747.747,0,0,0-.22-.53l-2-2a.749.749,0,0,0-.865-.141l-6,3A.749.749,0,0,0,4.25,9v2a4.726,4.726,0,0,0,1.332,3.284A6.213,6.213,0,0,0,2.888,18.25ZM12.25,8.311V11a3.25,3.25,0,0,1-6.5,0V9.463l5.1-2.55Zm-8,26.439h4.5v17.5H4.25Zm8.058,27.5H5.5A1.252,1.252,0,0,1,4.25,61V53.75h3.5V59a.748.748,0,0,0,.472.7l4.25,1.7a.443.443,0,0,1-.164.854Zm5.164-.854a.443.443,0,0,1-.164.854H14.194a1.9,1.9,0,0,0,.056-.442A1.931,1.931,0,0,0,13.028,60L9.25,58.492V53.75h3.5V59a.748.748,0,0,0,.472.7ZM10.25,52.25V34.75h3.5v17.5Zm6.023-25a2.246,2.246,0,0,1-1.97-1.166l-3.887-7.061a.75.75,0,1,0-1.314.724l3.886,7.061a3.739,3.739,0,0,0,.762.955V33.25H4.25V19.5a4.72,4.72,0,0,1,2.667-4.252,4.574,4.574,0,0,0,4.163,0,4.949,4.949,0,0,1,1.992,1.829l3.481,7.246a.751.751,0,0,0,.676.425H23.25v2.5ZM32,62.25A6.25,6.25,0,1,1,38.25,56,6.257,6.257,0,0,1,32,62.25Zm20,0A6.25,6.25,0,1,1,58.25,56,6.257,6.257,0,0,1,52,62.25Zm10.25-7H59.712a7.748,7.748,0,0,0-15.424,0H39.712a7.748,7.748,0,0,0-15.424,0H21.75V28.75h40.5Z\"></path></svg>							\n												<h5>\n													Errand service												</h5>\n											<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our avalum Care</p>										\n											<a href=\"https://mrarif.me/avalumcare/errand-service/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m494.06 287.89-27.93-16.59c20.21-27.68 30.86-60.35 30.86-94.93.01-88.98-72.38-161.37-161.35-161.37-33.04 0-64.8 9.92-91.85 28.68-25.29 17.54-44.83 41.61-56.76 69.77h-61.16l11.92-7.08c1.82-1.08 2.94-3.04 2.94-5.16s-1.12-4.08-2.94-5.16l-22.19-13.18-13.18-22.19c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-13.18 22.19-22.19 13.18c-1.82 1.08-2.94 3.04-2.94 5.16s1.12 4.08 2.94 5.16l22.19 13.18 1.48 2.49c-1.27 1.92-2.21 4.07-2.74 6.39l-34.86 152.22c-.8 3.49-.01 6.96 2.22 9.77 2.23 2.8 5.44 4.34 9.02 4.34h75.18v116.2h-29.78c-10.32 0-18.71 8.39-18.71 18.71v21.88h-52.41c-7.35 0-13.32 5.98-13.32 13.32v18.81c0 7.35 5.98 13.32 13.32 13.32h433.44c7.35 0 13.32-5.98 13.32-13.32v-18.81c0-7.35-5.98-13.32-13.32-13.32h-14.32c.08-.61.14-1.22.14-1.85v-20.17c0-2.92-.91-5.62-2.45-7.85 1.54-2.23 2.45-4.94 2.45-7.85v-20.17c0-7.64-6.21-13.85-13.85-13.85h-142.74c-7.64 0-13.85 6.21-13.85 13.85v20.17c0 2.92.91 5.62 2.45 7.85-1.54 2.23-2.45 4.94-2.45 7.85v20.17c0 .63.06 1.25.14 1.85h-56.36v-21.88c0-10.32-8.39-18.71-18.71-18.71h-29.78v-116.2h33.37v42.96c-9.31 2.62-16.15 11.18-16.15 21.32 0 12.21 9.94 22.15 22.15 22.15s22.15-9.94 22.15-22.15c0-10.13-6.84-18.69-16.15-21.32v-42.96h8.25c29.92 27.72 68.74 42.96 109.61 42.96 25.19 0 50.17-5.93 72.52-17.19l19.85 33.41c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l20.77-34.96 34.96-20.77c1.82-1.08 2.94-3.04 2.94-5.16s-1.14-4.08-2.96-5.16zm-272.13 71.15c0 5.6-4.55 10.15-10.15 10.15s-10.15-4.55-10.15-10.15 4.55-10.15 10.15-10.15 10.15 4.55 10.15 10.15zm113.71-332.04c82.36 0 149.36 67 149.36 149.36 0 31.71-9.68 61.68-28.04 87.14l-6.26-10.54c15.16-22.71 23.17-49.1 23.17-76.6 0-76.22-62.01-138.22-138.22-138.22-52.57 0-100.39 29.83-123.7 76.53-2.11-.78-4.39-1.22-6.76-1.22h-5.03c24.43-52.8 76.67-86.45 135.48-86.45zm36.63 260.89c-1.82 1.08-2.94 3.04-2.94 5.16 0 1.71.74 3.31 1.97 4.43-9.62 2.83-19.55 4.5-29.67 4.97v-15.08c0-3.31-2.69-6-6-6s-6 2.69-6 6v15.07c-26.12-1.25-51.4-10.64-71.96-26.8l-33.71-147.2c-.5-2.18-1.35-4.2-2.48-6 19.97-42.22 61.63-69.93 108.14-72.14v15.06c0 3.31 2.69 6 6 6s6-2.69 6-6v-15.08c64.83 3.05 117.03 55.24 120.08 120.07h-15.07c-3.31 0-6 2.69-6 6s2.69 6 6 6h15.06c-.98 21-7.08 41.16-17.88 59.05l-5.5-9.26c-1.08-1.82-3.04-2.94-5.16-2.94s-4.08 1.12-5.16 2.94l-20.77 34.96zm-134.89-47.18h-173.12l4.19-18.32h164.73zm-165.84-139.5 14.82-8.81c.86-.51 1.58-1.23 2.09-2.09l8.81-14.82 8.81 14.82c.51.86 1.23 1.58 2.09 2.09l14.82 8.81-14.82 8.8c-.86.51-1.58 1.23-2.09 2.09l-8.81 14.82-8.81-14.82c-.51-.86-1.23-1.58-2.09-2.09zm16.82 34.24 3.74 6.29c1.08 1.82 3.04 2.94 5.16 2.94s4.08-1.12 5.16-2.94l9.68-16.29h93.08c3.47 0 6.33 2.27 7.1 5.66l18.15 79.28h-159.23zm-26.85 117.26h178.61l6.88 30.05h-192.37zm401.57 212.16v18.81c0 .72-.61 1.32-1.32 1.32h-433.44c-.72 0-1.32-.6-1.32-1.32v-18.81c0-.72.6-1.32 1.32-1.32h433.44c.72 0 1.32.61 1.32 1.32zm-133.92-49.2v-23.88h23.44v23.88zm23.44 12v23.88h-23.44v-23.88zm12 23.88v-23.88h69.12c1 0 1.85.85 1.85 1.85v20.17c0 1-.85 1.85-1.85 1.85h-69.12zm70.98-57.91v20.17c0 1-.85 1.85-1.85 1.85h-69.13v-23.88h69.12c1.01.01 1.86.86 1.86 1.86zm-146.45 0c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1 0-1.85-.85-1.85-1.85zm0 56.06v-20.17c0-1 .85-1.85 1.85-1.85h26.17v23.88h-26.17c-1-.01-1.85-.86-1.85-1.86zm-80.22-20.03v21.88h-116.18v-21.88c0-3.7 3.01-6.71 6.71-6.71h102.76c3.7 0 6.71 3.01 6.71 6.71zm-48.5-18.71h-19.19v-116.2h19.19zm84.18-116.2h3c3.58 0 6.79-1.54 9.02-4.35.11-.14.21-.29.31-.44 23 15.93 50.57 24.61 78.72 24.61 16.93 0 33.43-3.02 49.09-8.98l11.94 7.09c-19.09 8.53-39.97 13.02-61.03 13.02-33.25.01-65.04-10.89-91.05-30.95zm207.07 14.68c-.86.51-1.58 1.23-2.09 2.09l-16.4 27.6-16.4-27.6c-.51-.86-1.23-1.58-2.09-2.09l-27.6-16.4 27.6-16.4c.86-.51 1.58-1.23 2.09-2.09l16.4-27.6 16.4 27.6c.51.86 1.23 1.58 2.09 2.09l27.6 16.4zm-63.59-139.08h-36.39c-1.74-4.62-5.41-8.3-10.03-10.03v-59.23c0-3.31-2.69-6-6-6s-6 2.69-6 6v59.23c-6.49 2.44-11.14 8.7-11.14 16.03 0 9.45 7.69 17.14 17.14 17.14 7.34 0 13.59-4.64 16.03-11.14h36.39c3.31 0 6-2.69 6-6s-2.69-6-6-6zm-52.43 11.14c-2.83 0-5.14-2.31-5.14-5.14s2.31-5.14 5.14-5.14 5.14 2.31 5.14 5.14-2.3 5.14-5.14 5.14z\"></path></svg>							\n												<h5>\n													Light housekeeping												</h5>\n											<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who</p>										\n											<a href=\"https://mrarif.me/avalumcare/light-housekeeping/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m500.409 200.165-223.053-180.844c-12.216-10.194-30.04-10.303-42.396-.256l-223.368 181.1c-3.003 2.435-3.464 6.843-1.029 9.846l33.204 40.955c2.436 3.002 6.843 3.465 9.846 1.028l202.387-164.089 157.932 128.045v255.322c0 8.341-6.786 15.126-15.126 15.126h-285.612c-8.34 0-15.125-6.785-15.125-15.126 0-3.866-3.134-7-7-7s-7 3.134-7 7c0 16.061 13.065 29.126 29.125 29.126h285.612c16.06 0 29.126-13.065 29.126-29.126v-243.971l30.457 24.693c1.252 1.016 2.81 1.562 4.408 1.562.242 0 .485-.013.728-.038 1.847-.192 3.541-1.111 4.71-2.554l33.203-40.954c2.434-3.003 1.974-7.41-1.029-9.845zm-38.641 36.546-201.36-163.255c-1.285-1.042-2.846-1.562-4.408-1.562s-3.124.521-4.408 1.562l-201.359 163.254-24.387-30.08 217.939-176.697c7.183-5.841 17.541-5.776 24.627.159.028.024.057.047.085.071l217.656 176.468zm-96.073 117.593c0-60.485-49.208-109.694-109.694-109.694s-109.695 49.209-109.695 109.694c-.001 60.487 49.208 109.696 109.694 109.696s109.695-49.209 109.695-109.696zm-205.39 0c0-52.766 42.929-95.694 95.695-95.694s95.694 42.929 95.694 95.694c.001 52.767-42.927 95.696-95.694 95.696-52.766 0-95.695-42.929-95.695-95.696zm125.45 58.8v-29.044h29.045c3.866 0 7-3.134 7-7v-45.511c0-3.866-3.134-7-7-7h-29.044v-29.044c0-3.866-3.134-7-7-7h-45.511c-3.866 0-7 3.134-7 7v29.044h-29.045c-3.866 0-7 3.134-7 7v45.511c0 3.866 3.134 7 7 7h29.044v29.044c0 3.866 3.134 7 7 7h45.511c3.866 0 7-3.134 7-7zm-14-36.044v29.044h-31.511v-29.044c0-3.866-3.134-7-7-7h-29.044v-31.511h29.044c3.866 0 7-3.134 7-7v-29.044h31.511v29.044c0 3.866 3.134 7 7 7h29.045v31.511h-29.044c-3.866 0-7.001 3.134-7.001 7zm-145.862-60.384c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm0 75.256c0 3.866-3.134 7-7 7h-38.375c-3.866 0-7-3.134-7-7s3.134-7 7-7h38.375c3.866 0 7 3.134 7 7zm-109.893-30.628c-3.866 0-7-3.134-7-7s3.134-7 7-7h97.167c3.866 0 7 3.134 7 7s-3.134 7-7 7zm122.141 75.256h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm0-150.512h-92.205c-3.866 0-7-3.134-7-7s3.134-7 7-7h92.205c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-83.884 112.884h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7zm-31.507-89.256h31.507c3.866 0 7 3.134 7 7s-3.134 7-7 7h-31.507c-3.866 0-7-3.134-7-7s3.134-7 7-7z\"></path></svg>							\n												<h5>\n													New boost												</h5>\n											<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone</p>										\n											<a href=\"https://mrarif.me/avalumcare/new-boost/\">\n														Learn More													\n																																			</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-02-11 07:06:44', '2026-02-11 07:06:44', '', 31, 'https://mrarif.me/avalumcare/?p=468', 0, 'revision', '', 0),
(469, 1, '2026-02-11 07:09:38', '2026-02-11 07:09:38', '', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:09:38', '2026-02-11 07:09:38', '', 320, 'https://mrarif.me/avalumcare/?p=469', 0, 'revision', '', 0),
(470, 1, '2026-02-11 07:09:38', '2026-02-11 07:09:38', '', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:09:38', '2026-02-11 07:09:38', '', 320, 'https://mrarif.me/avalumcare/?p=470', 0, 'revision', '', 0),
(471, 1, '2026-02-11 07:09:38', '2026-02-11 07:09:38', '', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:09:38', '2026-02-11 07:09:38', '', 320, 'https://mrarif.me/avalumcare/?p=471', 0, 'revision', '', 0),
(472, 1, '2026-02-11 07:11:49', '2026-02-11 07:11:49', '', 'Personal Care', '', 'inherit', 'open', 'closed', '', 'personal-care-2', '', '', '2026-02-11 07:11:49', '2026-02-11 07:11:49', '', 320, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care.jpg', 0, 'attachment', 'image/jpeg', 0),
(473, 1, '2026-02-11 07:12:43', '2026-02-11 07:12:43', '', 'Personal Care (2)', '', 'inherit', 'open', 'closed', '', 'personal-care-2-2', '', '', '2026-02-11 07:12:43', '2026-02-11 07:12:43', '', 320, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(474, 1, '2026-02-11 07:13:39', '2026-02-11 07:13:39', '', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:13:39', '2026-02-11 07:13:39', '', 320, 'https://mrarif.me/avalumcare/?p=474', 0, 'revision', '', 0),
(475, 1, '2026-02-11 07:13:39', '2026-02-11 07:13:39', '', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:13:39', '2026-02-11 07:13:39', '', 320, 'https://mrarif.me/avalumcare/?p=475', 0, 'revision', '', 0),
(476, 1, '2026-02-11 07:13:40', '2026-02-11 07:13:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:13:40', '2026-02-11 07:13:40', '', 320, 'https://mrarif.me/avalumcare/?p=476', 0, 'revision', '', 0),
(477, 1, '2026-02-11 07:18:46', '2026-02-11 07:18:46', '', 'label_3388576', '', 'inherit', 'open', 'closed', '', 'label_3388576', '', '', '2026-02-11 07:18:46', '2026-02-11 07:18:46', '', 320, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/label_3388576.svg', 0, 'attachment', 'image/svg+xml', 0),
(478, 1, '2026-02-11 07:19:55', '2026-02-11 07:19:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:19:55', '2026-02-11 07:19:55', '', 320, 'https://mrarif.me/avalumcare/?p=478', 0, 'revision', '', 0),
(479, 1, '2026-02-11 07:19:55', '2026-02-11 07:19:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:19:55', '2026-02-11 07:19:55', '', 320, 'https://mrarif.me/avalumcare/?p=479', 0, 'revision', '', 0),
(480, 1, '2026-02-11 07:19:55', '2026-02-11 07:19:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		Mobility isn’t just a matter of safety—it’s a matter of freedom. Right at Home’s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:19:55', '2026-02-11 07:19:55', '', 320, 'https://mrarif.me/avalumcare/?p=480', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(482, 1, '2026-02-11 07:22:43', '2026-02-11 07:22:43', '', 'Student Support Services', '', 'inherit', 'open', 'closed', '', 'student-support-services', '', '', '2026-02-11 07:22:43', '2026-02-11 07:22:43', '', 320, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg', 0, 'attachment', 'image/jpeg', 0),
(483, 1, '2026-02-11 07:24:51', '2026-02-11 07:24:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		Mobility isn’t just a matter of safety—it’s a matter of freedom. Right at Home’s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:24:51', '2026-02-11 07:24:51', '', 320, 'https://mrarif.me/avalumcare/?p=483', 0, 'revision', '', 0),
(484, 1, '2026-02-11 07:24:51', '2026-02-11 07:24:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		Mobility isn’t just a matter of safety—it’s a matter of freedom. Right at Home’s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:24:51', '2026-02-11 07:24:51', '', 320, 'https://mrarif.me/avalumcare/?p=484', 0, 'revision', '', 0),
(485, 1, '2026-02-11 07:24:51', '2026-02-11 07:24:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		Mobility isn’t just a matter of safety—it’s a matter of freedom. Right at Home’s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Hygiene</h2>		Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:			<h6>Bathing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bed baths\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Shower and tub assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stand-by assistance\n									</li>\n						</ul>\n							<h6>Personal Hygiene</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Grooming\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Dressing\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Oral care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bathroom and incontinence assistance\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 07:24:51', '2026-02-11 07:24:51', '', 320, 'https://mrarif.me/avalumcare/?p=485', 0, 'revision', '', 0),
(490, 1, '2026-02-11 07:28:36', '2026-02-11 07:28:36', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meal preparation</h2>		<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.</p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.</p>', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 07:28:36', '2026-02-11 07:28:36', '', 322, 'https://mrarif.me/avalumcare/?p=490', 0, 'revision', '', 0),
(487, 1, '2026-02-11 07:28:31', '2026-02-11 07:28:31', '', 'care', '', 'inherit', 'open', 'closed', '', 'care', '', '', '2026-02-11 07:28:31', '2026-02-11 07:28:31', '', 322, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg', 0, 'attachment', 'image/jpeg', 0),
(488, 1, '2026-02-11 07:28:36', '2026-02-11 07:28:36', '', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 07:28:36', '2026-02-11 07:28:36', '', 322, 'https://mrarif.me/avalumcare/?p=488', 0, 'revision', '', 0),
(489, 1, '2026-02-11 07:28:36', '2026-02-11 07:28:36', '', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 07:28:36', '2026-02-11 07:28:36', '', 322, 'https://mrarif.me/avalumcare/?p=489', 0, 'revision', '', 0),
(491, 1, '2026-02-11 07:30:45', '2026-02-11 07:30:45', '', 'Medication reminders (2)', '', 'inherit', 'open', 'closed', '', 'medication-reminders-2', '', '', '2026-02-11 07:30:45', '2026-02-11 07:30:45', '', 324, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(492, 1, '2026-02-11 07:30:51', '2026-02-11 07:30:51', '', 'Medication reminders', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2026-02-11 07:30:51', '2026-02-11 07:30:51', '', 324, 'https://mrarif.me/avalumcare/?p=492', 0, 'revision', '', 0),
(493, 1, '2026-02-11 07:30:51', '2026-02-11 07:30:51', '', 'Medication reminders', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2026-02-11 07:30:51', '2026-02-11 07:30:51', '', 324, 'https://mrarif.me/avalumcare/?p=493', 0, 'revision', '', 0),
(494, 1, '2026-02-11 07:30:51', '2026-02-11 07:30:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Medication-reminders-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication reminders</h2>		<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.</p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.</p>', 'Medication reminders', '', 'inherit', 'closed', 'closed', '', '324-revision-v1', '', '', '2026-02-11 07:30:51', '2026-02-11 07:30:51', '', 324, 'https://mrarif.me/avalumcare/?p=494', 0, 'revision', '', 0),
(495, 1, '2026-02-11 07:31:36', '2026-02-11 07:31:36', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meal preparation</h2>		<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.</p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.</p>', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 07:31:36', '2026-02-11 07:31:36', '', 322, 'https://mrarif.me/avalumcare/?p=495', 0, 'revision', '', 0),
(496, 1, '2026-02-11 07:31:36', '2026-02-11 07:31:36', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meal preparation</h2>		<p>Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and ensuring proper recovery. However, elderly individuals, busy patients, or people with memory difficulties may sometimes forget their medicines. Our Medication Reminder Service is designed to provide gentle, reliable reminders and supportive monitoring so that no dose is missed and health stays on track.</p><p>We focus on safety, accuracy, and compassionate care, helping clients follow their prescribed treatment while giving families complete peace of mind.</p>', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 07:31:36', '2026-02-11 07:31:36', '', 322, 'https://mrarif.me/avalumcare/?p=496', 0, 'revision', '', 0),
(497, 1, '2026-02-11 07:31:36', '2026-02-11 07:31:36', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meal preparation</h2>		<p>Proper nutrition plays a vital role in maintaining health, recovery, and overall well-being—especially for elderly individuals, patients, and people with special dietary needs. Our Home Care Meal Preparation Service is designed to provide fresh, healthy, and personalized meals in the comfort of your home, ensuring your loved ones receive the right nutrition every day.</p><p>We understand that preparing balanced meals can be challenging for seniors, recovering patients, or busy families. That is why our trained caregivers handle everything—from planning menus to cooking and serving—while maintaining the highest standards of hygiene and care.</p>', 'Meal preparation', '', 'inherit', 'closed', 'closed', '', '322-revision-v1', '', '', '2026-02-11 07:31:36', '2026-02-11 07:31:36', '', 322, 'https://mrarif.me/avalumcare/?p=497', 0, 'revision', '', 0),
(502, 1, '2026-02-11 07:35:06', '2026-02-11 07:35:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being. Our reliable and comfortable transportation services are designed to ensure you travel safely, on time, and with peace of mind. Whether it’s a medical visit, shopping trip, or social outing, we are here to support your mobility and everyday needs.', 'Transportation', '', 'inherit', 'closed', 'closed', '', '326-revision-v1', '', '', '2026-02-11 07:35:06', '2026-02-11 07:35:06', '', 326, 'https://mrarif.me/avalumcare/?p=502', 0, 'revision', '', 0),
(499, 1, '2026-02-11 07:34:59', '2026-02-11 07:34:59', '', 'Transportation', '', 'inherit', 'open', 'closed', '', 'transportation-2', '', '', '2026-02-11 07:34:59', '2026-02-11 07:34:59', '', 326, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Transportation.jpeg', 0, 'attachment', 'image/jpeg', 0),
(500, 1, '2026-02-11 07:35:05', '2026-02-11 07:35:05', '', 'Transportation', '', 'inherit', 'closed', 'closed', '', '326-revision-v1', '', '', '2026-02-11 07:35:05', '2026-02-11 07:35:05', '', 326, 'https://mrarif.me/avalumcare/?p=500', 0, 'revision', '', 0),
(501, 1, '2026-02-11 07:35:05', '2026-02-11 07:35:05', '', 'Transportation', '', 'inherit', 'closed', 'closed', '', '326-revision-v1', '', '', '2026-02-11 07:35:05', '2026-02-11 07:35:05', '', 326, 'https://mrarif.me/avalumcare/?p=501', 0, 'revision', '', 0),
(503, 1, '2026-02-11 07:36:42', '2026-02-11 07:36:42', '', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:36:42', '2026-02-11 07:36:42', '', 328, 'https://mrarif.me/avalumcare/?p=503', 0, 'revision', '', 0),
(504, 1, '2026-02-11 07:36:42', '2026-02-11 07:36:42', '', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:36:42', '2026-02-11 07:36:42', '', 328, 'https://mrarif.me/avalumcare/?p=504', 0, 'revision', '', 0),
(505, 1, '2026-02-11 07:36:42', '2026-02-11 07:36:42', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:36:42', '2026-02-11 07:36:42', '', 328, 'https://mrarif.me/avalumcare/?p=505', 0, 'revision', '', 0),
(506, 1, '2026-02-11 07:37:43', '2026-02-11 07:37:43', '', 'Dementia Care Services', '', 'inherit', 'open', 'closed', '', 'dementia-care-services', '', '', '2026-02-11 07:37:43', '2026-02-11 07:37:43', '', 328, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg', 0, 'attachment', 'image/jpeg', 0),
(507, 1, '2026-02-11 07:39:24', '2026-02-11 07:39:24', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:39:24', '2026-02-11 07:39:24', '', 328, 'https://mrarif.me/avalumcare/?p=507', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(508, 1, '2026-02-11 07:39:24', '2026-02-11 07:39:24', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:39:24', '2026-02-11 07:39:24', '', 328, 'https://mrarif.me/avalumcare/?p=508', 0, 'revision', '', 0),
(509, 1, '2026-02-11 07:39:24', '2026-02-11 07:39:24', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Caring for People with Dementia at Home</h2>		With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Honors who the senior was earlier in life\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Builds confidence and enhances physical strength\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a routine to prevent agitation and other dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stimulates brain and promotes cognitive engagement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a safe environment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Manages changing dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Creates opportunities for social interaction\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Reduces the feelings of loneliness and depression\n									</li>\n						</ul>', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:39:24', '2026-02-11 07:39:24', '', 328, 'https://mrarif.me/avalumcare/?p=509', 0, 'revision', '', 0),
(510, 1, '2026-02-11 07:42:12', '2026-02-11 07:42:12', '', '489892.jpg (1)', '', 'inherit', 'open', 'closed', '', '489892-jpg-1', '', '', '2026-02-11 07:42:12', '2026-02-11 07:42:12', '', 328, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(511, 1, '2026-02-11 07:42:17', '2026-02-11 07:42:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Caring for People with Dementia at Home</h2>		With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Honors who the senior was earlier in life\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Builds confidence and enhances physical strength\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a routine to prevent agitation and other dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stimulates brain and promotes cognitive engagement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a safe environment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Manages changing dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Creates opportunities for social interaction\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Reduces the feelings of loneliness and depression\n									</li>\n						</ul>', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:42:17', '2026-02-11 07:42:17', '', 328, 'https://mrarif.me/avalumcare/?p=511', 0, 'revision', '', 0),
(512, 1, '2026-02-11 07:42:17', '2026-02-11 07:42:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Caring for People with Dementia at Home</h2>		With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Honors who the senior was earlier in life\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Builds confidence and enhances physical strength\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a routine to prevent agitation and other dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stimulates brain and promotes cognitive engagement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a safe environment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Manages changing dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Creates opportunities for social interaction\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Reduces the feelings of loneliness and depression\n									</li>\n						</ul>', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:42:17', '2026-02-11 07:42:17', '', 328, 'https://mrarif.me/avalumcare/?p=512', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(513, 1, '2026-02-11 07:42:18', '2026-02-11 07:42:18', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Dementia-Care-Services-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Dementia Care Services</h2>		<p>We believe that with the right care approach, your loved one can live a fulfilled life even in the face of memory loss. Let our team help you create a personalized care plan that delivers stability, support and compassion.</p><p>Please reach out to your local Home Instead® office to review the range of services that may be offered.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/489892.jpg-1-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Caring for People with Dementia at Home</h2>		With years of experience caring for people living with dementia, we understand how difficult and emotional it can be. Our relationship-centered approach enables our Care Professionals to provide professional care that:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Honors who the senior was earlier in life\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Builds confidence and enhances physical strength\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a routine to prevent agitation and other dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stimulates brain and promotes cognitive engagement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Maintains a safe environment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Manages changing dementia-related behaviors\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Creates opportunities for social interaction\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Reduces the feelings of loneliness and depression\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Pro Training</h2>		Coping with a progressive condition requires patience, empathy and love. Our specially trained caregivers on Alzheimer\'s disease and other dementias can help provide just that for your family. Warm, familiar surroundings can play such an important role in managing cognitive diseases and enhancing quality of life.', 'Dementia care', '', 'inherit', 'closed', 'closed', '', '328-revision-v1', '', '', '2026-02-11 07:42:18', '2026-02-11 07:42:18', '', 328, 'https://mrarif.me/avalumcare/?p=513', 0, 'revision', '', 0),
(514, 1, '2026-02-11 07:43:29', '2026-02-11 07:43:29', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-11 07:43:29', '2026-02-11 07:43:29', '', 70, 'https://mrarif.me/avalumcare/?p=514', 0, 'revision', '', 0),
(518, 1, '2026-02-11 07:49:10', '2026-02-11 07:49:10', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 07:49:10', '2026-02-11 07:49:10', '', 330, 'https://mrarif.me/avalumcare/?p=518', 0, 'revision', '', 0),
(516, 1, '2026-02-11 07:49:10', '2026-02-11 07:49:10', '', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 07:49:10', '2026-02-11 07:49:10', '', 330, 'https://mrarif.me/avalumcare/?p=516', 0, 'revision', '', 0),
(517, 1, '2026-02-11 07:49:10', '2026-02-11 07:49:10', '', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 07:49:10', '2026-02-11 07:49:10', '', 330, 'https://mrarif.me/avalumcare/?p=517', 0, 'revision', '', 0),
(519, 1, '2026-02-11 07:50:50', '2026-02-11 07:50:50', '', 'Companionship', '', 'inherit', 'open', 'closed', '', 'companionship-2', '', '', '2026-02-11 07:50:50', '2026-02-11 07:50:50', '', 330, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg', 0, 'attachment', 'image/jpeg', 0),
(520, 1, '2026-02-11 07:51:37', '2026-02-11 07:51:37', '', 'Companionship (2)', '', 'inherit', 'open', 'closed', '', 'companionship-2-2', '', '', '2026-02-11 07:51:37', '2026-02-11 07:51:37', '', 330, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(521, 1, '2026-02-11 07:51:42', '2026-02-11 07:51:42', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 07:51:42', '2026-02-11 07:51:42', '', 330, 'https://mrarif.me/avalumcare/?p=521', 0, 'revision', '', 0),
(522, 1, '2026-02-11 07:51:43', '2026-02-11 07:51:43', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 07:51:43', '2026-02-11 07:51:43', '', 330, 'https://mrarif.me/avalumcare/?p=522', 0, 'revision', '', 0),
(523, 1, '2026-02-11 07:51:43', '2026-02-11 07:51:43', '<img width=\"1000\" height=\"702\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-300x211.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-768x539.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 07:51:43', '2026-02-11 07:51:43', '', 330, 'https://mrarif.me/avalumcare/?p=523', 0, 'revision', '', 0),
(524, 1, '2026-02-11 07:53:54', '2026-02-11 07:53:54', '', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 07:53:54', '2026-02-11 07:53:54', '', 332, 'https://mrarif.me/avalumcare/?p=524', 0, 'revision', '', 0),
(525, 1, '2026-02-11 07:53:54', '2026-02-11 07:53:54', '', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 07:53:54', '2026-02-11 07:53:54', '', 332, 'https://mrarif.me/avalumcare/?p=525', 0, 'revision', '', 0),
(526, 1, '2026-02-11 07:53:54', '2026-02-11 07:53:54', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Errand Service</h2>		<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.</p><p>We understand that small daily responsibilities—such as grocery shopping, collecting medicines, or paying bills—can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.</p>', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 07:53:54', '2026-02-11 07:53:54', '', 332, 'https://mrarif.me/avalumcare/?p=526', 0, 'revision', '', 0),
(527, 1, '2026-02-11 07:55:19', '2026-02-11 07:55:19', '', 'Errand Service', '', 'inherit', 'open', 'closed', '', 'errand-service-2', '', '', '2026-02-11 07:55:19', '2026-02-11 07:55:19', '', 332, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(528, 1, '2026-02-11 07:55:24', '2026-02-11 07:55:24', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Errand Service</h2>		<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.</p><p>We understand that small daily responsibilities—such as grocery shopping, collecting medicines, or paying bills—can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.</p>', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 07:55:24', '2026-02-11 07:55:24', '', 332, 'https://mrarif.me/avalumcare/?p=528', 0, 'revision', '', 0),
(529, 1, '2026-02-11 07:55:24', '2026-02-11 07:55:24', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Errand Service</h2>		<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.</p><p>We understand that small daily responsibilities—such as grocery shopping, collecting medicines, or paying bills—can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.</p>', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 07:55:24', '2026-02-11 07:55:24', '', 332, 'https://mrarif.me/avalumcare/?p=529', 0, 'revision', '', 0),
(530, 1, '2026-02-11 07:55:25', '2026-02-11 07:55:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Errand-Service-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Errand Service</h2>		<p>Managing daily tasks can become difficult for elderly individuals, recovering patients, busy families, or people with limited mobility. Our Home Care Errand Service is designed to provide dependable support with essential outside and household errands, helping clients live safely, comfortably, and independently in their own homes.</p><p>We understand that small daily responsibilities—such as grocery shopping, collecting medicines, or paying bills—can feel overwhelming without proper assistance. Our trained and trustworthy caregivers are here to handle these tasks with care, honesty, and efficiency.</p>', 'Errand service', '', 'inherit', 'closed', 'closed', '', '332-revision-v1', '', '', '2026-02-11 07:55:25', '2026-02-11 07:55:25', '', 332, 'https://mrarif.me/avalumcare/?p=530', 0, 'revision', '', 0),
(532, 1, '2026-02-11 07:57:01', '2026-02-11 07:57:01', '', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 07:57:01', '2026-02-11 07:57:01', '', 334, 'https://mrarif.me/avalumcare/?p=532', 0, 'revision', '', 0),
(533, 1, '2026-02-11 07:57:02', '2026-02-11 07:57:02', '', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 07:57:02', '2026-02-11 07:57:02', '', 334, 'https://mrarif.me/avalumcare/?p=533', 0, 'revision', '', 0),
(534, 1, '2026-02-11 07:57:02', '2026-02-11 07:57:02', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Light Housekeeping Service</h2>		<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.</p><p>Our trained caregivers provide gentle household assistance while respecting the client’s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.</p>', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 07:57:02', '2026-02-11 07:57:02', '', 334, 'https://mrarif.me/avalumcare/?p=534', 0, 'revision', '', 0),
(535, 1, '2026-02-11 07:58:19', '2026-02-11 07:58:19', '', 'Light Housekeeping Service', '', 'inherit', 'open', 'closed', '', 'light-housekeeping-service', '', '', '2026-02-11 07:58:19', '2026-02-11 07:58:19', '', 334, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service.jpeg', 0, 'attachment', 'image/jpeg', 0),
(536, 1, '2026-02-11 07:58:23', '2026-02-11 07:58:23', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Light Housekeeping Service</h2>		<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.</p><p>Our trained caregivers provide gentle household assistance while respecting the client’s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.</p>', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 07:58:23', '2026-02-11 07:58:23', '', 334, 'https://mrarif.me/avalumcare/?p=536', 0, 'revision', '', 0),
(537, 1, '2026-02-11 07:58:24', '2026-02-11 07:58:24', '<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care-.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/care--768x511.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Light Housekeeping Service</h2>		<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.</p><p>Our trained caregivers provide gentle household assistance while respecting the client’s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.</p>', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 07:58:24', '2026-02-11 07:58:24', '', 334, 'https://mrarif.me/avalumcare/?p=537', 0, 'revision', '', 0),
(538, 1, '2026-02-11 07:58:24', '2026-02-11 07:58:24', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Light-Housekeeping-Service-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Light Housekeeping Service</h2>		<p>A clean and organized home is essential for health, safety, and peace of mind—especially for elderly individuals, recovering patients, and people who need daily support. Our Light Housekeeping Service is designed to maintain a tidy, hygienic, and comfortable living environment without the stress of heavy household work.</p><p>Our trained caregivers provide gentle household assistance while respecting the client’s privacy, routine, and personal space. We focus on everyday cleanliness and safety, helping clients enjoy a healthier and more relaxing home life.</p>', 'Light housekeeping', '', 'inherit', 'closed', 'closed', '', '334-revision-v1', '', '', '2026-02-11 07:58:24', '2026-02-11 07:58:24', '', 334, 'https://mrarif.me/avalumcare/?p=538', 0, 'revision', '', 0),
(543, 1, '2026-02-11 08:02:59', '2026-02-11 08:02:59', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service-300x200.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>New Boost Care Service</h2>		<p>Our New Boost Care Service is specially designed to provide enhanced support for elderly individuals, recovering patients, and anyone who needs additional daily care at home. This service focuses on improving energy, comfort, nutrition, hygiene, and emotional well-being, helping clients feel stronger, safer, and more confident in their everyday life.</p><p>We understand that sometimes regular home care is not enough. Clients may need extra attention, closer monitoring, and more personalized assistance during recovery, weakness, or long-term health conditions. The New Boost Care Service delivers that additional level of compassionate and professional support—right in the comfort of home.</p>', 'New boost', '', 'inherit', 'closed', 'closed', '', '336-revision-v1', '', '', '2026-02-11 08:02:59', '2026-02-11 08:02:59', '', 336, 'https://mrarif.me/avalumcare/?p=543', 0, 'revision', '', 0),
(540, 1, '2026-02-11 08:02:53', '2026-02-11 08:02:53', '', 'New Boost Care Service', '', 'inherit', 'open', 'closed', '', 'new-boost-care-service', '', '', '2026-02-11 08:02:53', '2026-02-11 08:02:53', '', 336, 'https://mrarif.me/avalumcare/wp-content/uploads/2026/02/New-Boost-Care-Service.jpeg', 0, 'attachment', 'image/jpeg', 0),
(541, 1, '2026-02-11 08:02:58', '2026-02-11 08:02:58', '', 'New boost', '', 'inherit', 'closed', 'closed', '', '336-revision-v1', '', '', '2026-02-11 08:02:58', '2026-02-11 08:02:58', '', 336, 'https://mrarif.me/avalumcare/?p=541', 0, 'revision', '', 0),
(542, 1, '2026-02-11 08:02:58', '2026-02-11 08:02:58', '', 'New boost', '', 'inherit', 'closed', 'closed', '', '336-revision-v1', '', '', '2026-02-11 08:02:58', '2026-02-11 08:02:58', '', 336, 'https://mrarif.me/avalumcare/?p=542', 0, 'revision', '', 0),
(544, 1, '2026-02-11 08:05:30', '2026-02-11 08:05:30', '', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:05:30', '2026-02-11 08:05:30', '', 33, 'https://mrarif.me/avalumcare/?p=544', 0, 'revision', '', 0),
(545, 1, '2026-02-11 08:05:30', '2026-02-11 08:05:30', '', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:05:30', '2026-02-11 08:05:30', '', 33, 'https://mrarif.me/avalumcare/?p=545', 0, 'revision', '', 0),
(546, 1, '2026-02-11 08:05:30', '2026-02-11 08:05:30', '<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:05:30', '2026-02-11 08:05:30', '', 33, 'https://mrarif.me/avalumcare/?p=546', 0, 'revision', '', 0),
(547, 1, '2026-02-11 08:06:44', '2026-02-11 08:06:44', '<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:06:44', '2026-02-11 08:06:44', '', 33, 'https://mrarif.me/avalumcare/?p=547', 0, 'revision', '', 0),
(548, 1, '2026-02-11 08:06:44', '2026-02-11 08:06:44', '<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:06:44', '2026-02-11 08:06:44', '', 33, 'https://mrarif.me/avalumcare/?p=548', 0, 'revision', '', 0),
(558, 1, '2026-02-11 08:09:37', '2026-02-11 08:09:37', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:09:37', '2026-02-11 08:09:37', '', 33, 'https://mrarif.me/avalumcare/?p=558', 0, 'revision', '', 0),
(549, 1, '2026-02-11 08:06:45', '2026-02-11 08:06:45', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:06:45', '2026-02-11 08:06:45', '', 33, 'https://mrarif.me/avalumcare/?p=549', 0, 'revision', '', 0),
(550, 1, '2026-02-11 08:08:03', '2026-02-11 08:08:03', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2026-02-11 08:08:03', '2026-02-11 08:08:03', '', 35, 'https://mrarif.me/avalumcare/?p=550', 0, 'revision', '', 0),
(551, 1, '2026-02-11 08:08:03', '2026-02-11 08:08:03', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2026-02-11 08:08:03', '2026-02-11 08:08:03', '', 35, 'https://mrarif.me/avalumcare/?p=551', 0, 'revision', '', 0),
(552, 1, '2026-02-11 08:08:03', '2026-02-11 08:08:03', '<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Contact', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2026-02-11 08:08:03', '2026-02-11 08:08:03', '', 35, 'https://mrarif.me/avalumcare/?p=552', 0, 'revision', '', 0),
(553, 1, '2026-02-11 08:09:31', '2026-02-11 08:09:31', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:09:31', '2026-02-11 08:09:31', '', 10, 'https://mrarif.me/avalumcare/?p=553', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(554, 1, '2026-02-11 08:09:32', '2026-02-11 08:09:32', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:09:32', '2026-02-11 08:09:32', '', 10, 'https://mrarif.me/avalumcare/?p=554', 0, 'revision', '', 0),
(555, 1, '2026-02-11 08:09:32', '2026-02-11 08:09:32', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:09:32', '2026-02-11 08:09:32', '', 10, 'https://mrarif.me/avalumcare/?p=555', 0, 'revision', '', 0),
(556, 1, '2026-02-11 08:09:37', '2026-02-11 08:09:37', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:09:37', '2026-02-11 08:09:37', '', 33, 'https://mrarif.me/avalumcare/?p=556', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-11 08:09:37', '2026-02-11 08:09:37', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>			<h6>Paying for In-Home Care</h6>		Learn about the many options available to pay for ongoing home care services.													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:09:37', '2026-02-11 08:09:37', '', 33, 'https://mrarif.me/avalumcare/?p=557', 0, 'revision', '', 0),
(559, 1, '2026-02-11 08:12:41', '2026-02-11 08:12:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:12:41', '2026-02-11 08:12:41', '', 10, 'https://mrarif.me/avalumcare/?p=559', 0, 'revision', '', 0),
(560, 1, '2026-02-11 08:12:41', '2026-02-11 08:12:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:12:41', '2026-02-11 08:12:41', '', 10, 'https://mrarif.me/avalumcare/?p=560', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(561, 1, '2026-02-11 08:12:41', '2026-02-11 08:12:41', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:12:41', '2026-02-11 08:12:41', '', 10, 'https://mrarif.me/avalumcare/?p=561', 0, 'revision', '', 0),
(562, 1, '2026-02-11 08:12:50', '2026-02-11 08:12:50', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:12:50', '2026-02-11 08:12:50', '', 33, 'https://mrarif.me/avalumcare/?p=562', 0, 'revision', '', 0),
(563, 1, '2026-02-11 08:12:50', '2026-02-11 08:12:50', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Right at Home exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:12:50', '2026-02-11 08:12:50', '', 33, 'https://mrarif.me/avalumcare/?p=563', 0, 'revision', '', 0),
(564, 1, '2026-02-11 08:12:51', '2026-02-11 08:12:51', '<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay, or information on any other aging topic, we\'re here to help. We use our decades of experience and partnerships with experts worldwide to guide you each step of the way. Take some time to browse through our articles, guides and videos, knowing that you have a trusted guide to help you through it all.</p>													<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />', 'Resources', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2026-02-11 08:12:51', '2026-02-11 08:12:51', '', 33, 'https://mrarif.me/avalumcare/?p=564', 0, 'revision', '', 0),
(565, 1, '2026-02-11 08:14:50', '2026-02-11 08:14:50', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		Mobility isn’t just a matter of safety—it’s a matter of freedom. Right at Home’s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Hygiene</h2>		Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:			<h6>Bathing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bed baths\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Shower and tub assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stand-by assistance\n									</li>\n						</ul>\n							<h6>Personal Hygiene</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Grooming\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Dressing\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Oral care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bathroom and incontinence assistance\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 08:14:50', '2026-02-11 08:14:50', '', 320, 'https://mrarif.me/avalumcare/?p=565', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(566, 1, '2026-02-11 08:14:51', '2026-02-11 08:14:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Right at Home’s caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		Mobility isn’t just a matter of safety—it’s a matter of freedom. Right at Home’s caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Hygiene</h2>		Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:			<h6>Bathing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bed baths\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Shower and tub assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stand-by assistance\n									</li>\n						</ul>\n							<h6>Personal Hygiene</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Grooming\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Dressing\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Oral care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bathroom and incontinence assistance\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 08:14:51', '2026-02-11 08:14:51', '', 320, 'https://mrarif.me/avalumcare/?p=566', 0, 'revision', '', 0),
(567, 1, '2026-02-11 08:14:51', '2026-02-11 08:14:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Care</h2>		<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed in the morning. But these things can become major challenges as you age. In many cases, loved ones think the only solution is to put their older family members into nursing homes. Avalum Care caregivers can provide personal care with dignity and respect, so the home can be a place of comfort, not frustration. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2.jpg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-300x200.jpg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Personal-Care-2-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Mobility Assistance</h2>		<p>Mobility isn’t just a matter of safety—it’s a matter of freedom. Avalum Care caregivers have been trusted to help preserve that freedom for seniors and adults with disabilities across the country. We can help you with:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Walking assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Paraplegia/quadriplegia care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Wheelchair assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Transferring\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Student-Support-Services-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Hygiene</h2>		Personal hygiene is an important part of feeling well. But we know that as one ages, basic hygiene can become a challenge. Our caregivers can discreetly help with:			<h6>Bathing</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bed baths\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Shower and tub assistance\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Stand-by assistance\n									</li>\n						</ul>\n							<h6>Personal Hygiene</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Grooming\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Dressing\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Oral care\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Bathroom and incontinence assistance\n									</li>\n						</ul>', 'Personal care', '', 'inherit', 'closed', 'closed', '', '320-revision-v1', '', '', '2026-02-11 08:14:51', '2026-02-11 08:14:51', '', 320, 'https://mrarif.me/avalumcare/?p=567', 0, 'revision', '', 0),
(568, 1, '2026-02-11 08:16:50', '2026-02-11 08:16:50', '<img width=\"1000\" height=\"702\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-300x211.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-768x539.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 08:16:50', '2026-02-11 08:16:50', '', 330, 'https://mrarif.me/avalumcare/?p=568', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(569, 1, '2026-02-11 08:16:50', '2026-02-11 08:16:50', '<img width=\"1000\" height=\"702\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-300x211.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-768x539.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Right at Home caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 08:16:50', '2026-02-11 08:16:50', '', 330, 'https://mrarif.me/avalumcare/?p=569', 0, 'revision', '', 0),
(570, 1, '2026-02-11 08:16:51', '2026-02-11 08:16:51', '<img width=\"1000\" height=\"702\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-300x211.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-768x539.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Companionship</h2>		<p>Over the course of your life, you’ve tailored your home to be exactly how you want it. You’ve set routines that feel familiar. However, as you get older, you may find it hard to keep up with things. You may struggle to do household chores or make your way around town. With our Companion Care services, we aim to make sure you don’t have to struggle with the day-to-day.</p><p>Avalum Care caregivers provide assistance so you can live comfortably at home. More importantly, our caregivers promote healthy living and well-being through the benefits of social interaction. Contact us today at (310) 694-5001 to get more information on how we can help you.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/Companionship-2-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Wellness</h2>		Living well is about more than just good health. Our caregivers can help foster wellness both mentally and physically to delay the effects of aging. This includes:			<h6>Wellness support</h6>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Safety supervision\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Light exercise encouragement\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Cognitive stimulation\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" height=\"512\" viewBox=\"0 0 24 24\" width=\"512\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										Meal planning\n									</li>\n						</ul>', 'Companionship', '', 'inherit', 'closed', 'closed', '', '330-revision-v1', '', '', '2026-02-11 08:16:51', '2026-02-11 08:16:51', '', 330, 'https://mrarif.me/avalumcare/?p=570', 0, 'revision', '', 0),
(571, 1, '2026-02-11 08:17:34', '2026-02-11 08:17:34', '<h2>Frequently Asked Questions</h2>				\n							What does your interview and hiring process look like?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Applicants either call us or apply online. Once reviewed and pre-qualified, they go through our Activated Insights process, which sends a link to schedule an in-person interview. If they meet our hiring needs, they are invited to a two-hour orientation, held in our office every Wednesday from 10:00 a.m. to 12:00 p.m.</p>\n							What is the typical timeline from application to hire?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>On average, about one week. In some cases, depending on need, the process can be completed in as little as 1–2 days.</p>\n							What kind of training do you offer new hires?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>During orientation, we provide WellSky personal care training, including how to clock in and out. Caregivers also receive 5 hours of annual Home Care Pulse training. Additionally, specialized dementia and Alzheimer’s training is provided as needed in classroom settings at our headquarters office.</p>\n							Do you have all of the current caregiver benefits listed on your website?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Not all of them. We currently offer health, vision, and dental insurance, ZayZoon (early wage access), and sick pay.</p>\n							What makes your office the agency of choice for caregivers in your area?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We offer highly competitive pay and benefits compared to other home care agencies in the region, along with consistent work opportunities that set us apart.</p>', 'FAQs', '', 'publish', 'closed', 'closed', '', 'faqs', '', '', '2026-02-11 08:23:26', '2026-02-11 08:23:26', '', 0, 'https://mrarif.me/avalumcare/?page_id=571', 0, 'page', '', 0),
(572, 1, '2026-02-11 08:17:34', '2026-02-11 08:17:34', '', 'FAQs', '', 'inherit', 'closed', 'closed', '', '571-revision-v1', '', '', '2026-02-11 08:17:34', '2026-02-11 08:17:34', '', 571, 'https://mrarif.me/avalumcare/?p=572', 0, 'revision', '', 0),
(573, 1, '2026-02-11 08:17:50', '2026-02-11 08:17:50', ' ', '', '', 'publish', 'closed', 'closed', '', '573', '', '', '2026-02-11 08:17:50', '2026-02-11 08:17:50', '', 0, 'https://mrarif.me/avalumcare/?p=573', 13, 'nav_menu_item', '', 0),
(574, 1, '2026-02-11 08:21:22', '2026-02-11 08:21:22', '<h2>Frequently Asked Questions</h2>				\n							What type of care do you provide?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We provide non-medical in-home care such as personal care assistance, companionship, meal preparation, light housekeeping, transportation, and medication reminders.</p>\n							Do you provide medical or nursing care?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Our services are non-medical. We do not provide nursing care or administer medications.</p>\n							Who can use your services?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our services are ideal for seniors, individuals recovering from illness or surgery, and anyone who needs help with daily activities at home.</p>\n							Can services be customized?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Yes. We tailor care services to meet each client’s specific needs and preferences.</p>\n							How do I get started?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Simply call or email us to discuss your needs and available care options.</p>', 'faq', '', 'publish', 'closed', 'closed', '', 'faq', '', '', '2026-02-11 08:21:22', '2026-02-11 08:21:22', '', 0, 'https://mrarif.me/avalumcare/?elementor_library=faq', 0, 'elementor_library', '', 0),
(575, 1, '2026-02-11 08:21:22', '2026-02-11 08:21:22', '<h2>Frequently Asked Questions</h2>				\n							What type of care do you provide?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We provide non-medical in-home care such as personal care assistance, companionship, meal preparation, light housekeeping, transportation, and medication reminders.</p>\n							Do you provide medical or nursing care?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Our services are non-medical. We do not provide nursing care or administer medications.</p>\n							Who can use your services?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our services are ideal for seniors, individuals recovering from illness or surgery, and anyone who needs help with daily activities at home.</p>\n							Can services be customized?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Yes. We tailor care services to meet each client’s specific needs and preferences.</p>\n							How do I get started?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Simply call or email us to discuss your needs and available care options.</p>', 'faq', '', 'inherit', 'closed', 'closed', '', '574-revision-v1', '', '', '2026-02-11 08:21:22', '2026-02-11 08:21:22', '', 574, 'https://mrarif.me/avalumcare/?p=575', 0, 'revision', '', 0),
(576, 1, '2026-02-11 08:23:26', '2026-02-11 08:23:26', '', 'FAQs', '', 'inherit', 'closed', 'closed', '', '571-revision-v1', '', '', '2026-02-11 08:23:26', '2026-02-11 08:23:26', '', 571, 'https://mrarif.me/avalumcare/?p=576', 0, 'revision', '', 0),
(577, 1, '2026-02-11 08:23:26', '2026-02-11 08:23:26', '', 'FAQs', '', 'inherit', 'closed', 'closed', '', '571-revision-v1', '', '', '2026-02-11 08:23:26', '2026-02-11 08:23:26', '', 571, 'https://mrarif.me/avalumcare/?p=577', 0, 'revision', '', 0),
(578, 1, '2026-02-11 08:23:26', '2026-02-11 08:23:26', '<h2>Frequently Asked Questions</h2>				\n							What does your interview and hiring process look like?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Applicants either call us or apply online. Once reviewed and pre-qualified, they go through our Activated Insights process, which sends a link to schedule an in-person interview. If they meet our hiring needs, they are invited to a two-hour orientation, held in our office every Wednesday from 10:00 a.m. to 12:00 p.m.</p>\n							What is the typical timeline from application to hire?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>On average, about one week. In some cases, depending on need, the process can be completed in as little as 1–2 days.</p>\n							What kind of training do you offer new hires?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>During orientation, we provide WellSky personal care training, including how to clock in and out. Caregivers also receive 5 hours of annual Home Care Pulse training. Additionally, specialized dementia and Alzheimer’s training is provided as needed in classroom settings at our headquarters office.</p>\n							Do you have all of the current caregiver benefits listed on your website?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Not all of them. We currently offer health, vision, and dental insurance, ZayZoon (early wage access), and sick pay.</p>\n							What makes your office the agency of choice for caregivers in your area?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We offer highly competitive pay and benefits compared to other home care agencies in the region, along with consistent work opportunities that set us apart.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '571-revision-v1', '', '', '2026-02-11 08:23:26', '2026-02-11 08:23:26', '', 571, 'https://mrarif.me/avalumcare/?p=578', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(579, 1, '2026-02-11 08:24:35', '2026-02-11 08:24:35', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:24:35', '2026-02-11 08:24:35', '', 10, 'https://mrarif.me/avalumcare/?p=579', 0, 'revision', '', 0),
(580, 1, '2026-02-11 08:24:36', '2026-02-11 08:24:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:24:36', '2026-02-11 08:24:36', '', 10, 'https://mrarif.me/avalumcare/?p=580', 0, 'revision', '', 0);
INSERT INTO `wpa_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(581, 1, '2026-02-11 08:24:36', '2026-02-11 08:24:36', '<h1>Avalum Care</h1>		Helping older adults live the life they love in the place they call home								<a href=\"https://mrarif.me/avalumcare/services/\">\n									Learn more\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-4-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			Hour Care			\n				0\n																	<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3.jpeg 1000w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-300x300.jpeg 300w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-150x150.jpeg 150w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/ABOUT-3-768x768.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				About Us				\n							<h2>Compassionate Care You Can Trust</h2>		It doesn’t matter if you’re here because you’re looking for help living independently, or if you want to make sure someone you love has the support they need to stay in their home.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"glyph\" viewBox=\"0 0 64 64\"><path d=\"m56.24 18.01-5.12 5.11a2.83005 2.83005 0 0 1 -.91.62 20.01294 20.01294 0 1 1 -9.95-9.95 3.022 3.022 0 0 1 .59-.88l5.15-5.15a28.05315 28.05315 0 1 0 10.24 10.25z\"></path><path d=\"m40.74 19.01-.61-3.05a17.67884 17.67884 0 0 0 -8.13-1.96 18 18 0 1 0 18 18 17.71933 17.71933 0 0 0 -1.96-8.14l-3.05-.6-2.65 2.65a11.99947 11.99947 0 1 1 -4.25-4.25z\"></path><path d=\"m36.62 23.13a9.99695 9.99695 0 1 0 4.25 4.25l-6.75 6.74a2.93139 2.93139 0 0 1 -2.09.88 3.08363 3.08363 0 0 1 -2.81-1.89 2.91547 2.91547 0 0 1 .64-3.22z\"></path><path d=\"m42.02 15.2.89 4.47-11.62 11.61992a1.00435 1.00435 0 0 0 1.42 1.42l11.62-11.61992 4.47.89a1.35405 1.35405 0 0 0 .2.02 1.00686 1.00686 0 0 0 .71-.29l7-7a1.01075 1.01075 0 0 0 -.51-1.69l-4.35-.87-.87-4.35a1.00608 1.00608 0 0 0 -.69-.76 1.024 1.024 0 0 0 -1 .25l-7 7a1.01767 1.01767 0 0 0 -.27.91z\"></path></svg>				\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						Put simply, our mission is to improve the quality of life for those we serve.					</p>\n												<a href=\"https://mrarif.me/nxtgenmedical/about/\">\n									Learn more\n					</a>\n									<h2>Services we   provide</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m119.947 209.432h86.346v86.373c0 3.859 3.129 6.988 6.988 6.988h98.841c12.261 5.672 26.01 8.855 40.523 8.855 40.381 0 74.845-24.653 87.781-59.03 16.312-.315 29.487-13.673 29.487-30.059s-13.175-29.744-29.487-30.059c-5.224-13.882-13.955-26.18-25.172-35.907v-55.743c0-3.859-3.129-6.988-6.988-6.988h-86.374v-86.374c0-3.859-3.129-6.988-6.988-6.988h-101.624c-3.859 0-6.988 3.129-6.988 6.988v86.374h-86.346c-3.859 0-6.988 3.129-6.988 6.988v101.594c.001 3.859 3.13 6.988 6.989 6.988zm335.988 13.127c0 7.257-4.83 13.403-11.443 15.406.917-5.006 1.399-10.153 1.399-15.406s-.482-10.4-1.399-15.406c6.613 2.003 11.443 8.149 11.443 15.406zm-24.019 0c0 41.418-35.562 75.114-79.272 75.114-43.727 0-79.301-33.696-79.301-75.114 0-30.474 19.269-56.748 46.863-68.516-1.268 3.41-1.964 7.096-1.964 10.943 0 17.378 14.125 31.517 31.488 31.517 7.899 0 15.463-2.942 21.298-8.285 2.846-2.606 3.041-7.026.435-9.873s-7.026-3.042-9.873-.435c-3.252 2.977-7.464 4.617-11.86 4.617-9.656 0-17.512-7.869-17.512-17.541 0-8.948 6.749-16.338 15.422-17.376 1.657-.098 3.322-.165 5.005-.165 43.71 0 79.271 33.696 79.271 75.114zm-304.981-114.722h86.346c3.859 0 6.988-3.129 6.988-6.988v-86.373h87.647v86.374c0 3.859 3.129 6.988 6.988 6.988h86.374v38.737c-14.169-8.308-30.825-13.105-48.633-13.105-.9 0-1.796.015-2.69.039-.075-.002-.149-.011-.224-.011-1.117 0-2.22.061-3.307.175-37.682 2.382-69.316 26.229-81.586 58.828-16.313.314-29.488 13.672-29.488 30.059s13.176 29.745 29.488 30.059c5.278 14.023 14.139 26.426 25.524 36.199h-70.092v-86.373c0-3.859-3.129-6.988-6.988-6.988h-86.346v-87.62zm133.832 130.128c-6.613-2.002-11.443-8.148-11.443-15.406s4.83-13.404 11.443-15.406c-.917 5.006-1.4 10.153-1.4 15.406s.482 10.4 1.4 15.406zm208.177 103.686c-9.882-15.38-30.442-19.865-45.834-9.999l-69.266 44.391c-3.098-10.005-10.842-18.21-21.271-21.66l-120.09-39.719c-15.646-5.193-31.368-3.41-45.471 5.161l-52.768 32.114-4.419-6.929c-.997-1.562-2.573-2.665-4.383-3.066-1.809-.401-3.704-.065-5.267.931l-59.129 37.712c-1.562.997-2.665 2.573-3.065 4.383-.4 1.809-.065 3.704.932 5.267l75.284 118.032c1.332 2.09 3.591 3.231 5.898 3.231 1.285 0 2.585-.354 3.749-1.096l59.129-37.684c1.563-.996 2.666-2.573 3.067-4.383.401-1.809.066-3.705-.931-5.268l-9.042-14.18 23.12-14.077 95.81 31.718c6.382 2.112 12.76 3.162 19.044 3.162 10.971 0 21.656-3.202 31.566-9.544l113.297-72.646c7.438-4.751 12.584-12.145 14.489-20.819 1.909-8.688.33-17.576-4.449-25.032zm-346.72 153.213-67.769-106.251 47.345-30.197 4.216 6.611c.015.025.026.05.041.075.036.059.078.113.116.171l63.395 99.417zm337.519-131.179c-1.103 5.024-4.073 9.3-8.372 12.046l-113.301 72.648c-11.916 7.625-25.291 9.312-38.681 4.882l-98.878-32.733c-1.947-.643-4.078-.402-5.83.665l-26.13 15.909-46.79-73.377 52.514-31.96c10.633-6.462 22.007-7.753 33.812-3.835l120.096 39.721c8.022 2.654 13.432 10.546 13.134 18.957-.06.256-.109.516-.14.783-.741 6.327-4.245 12.198-9.143 15.322-4.501 2.872-10.011 3.357-15.925 1.405l-54.687-18.106c-3.665-1.215-7.617.774-8.83 4.437-1.213 3.664.774 7.617 4.438 8.83l54.694 18.109c3.798 1.252 7.592 1.873 11.282 1.873 5.928 0 11.586-1.603 16.543-4.766 7.611-4.854 13.051-13.035 14.978-22.293l76.124-48.786c8.909-5.712 20.814-3.116 26.53 5.781 2.759 4.306 3.669 9.45 2.562 14.488zm-127.045-148.397c0 11.856-9.658 21.502-21.53 21.502-11.856 0-21.501-9.645-21.501-21.502 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.525 7.526 4.165 0 7.554-3.376 7.554-7.526 0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988zm75.906-6.988c3.859 0 6.988 3.129 6.988 6.988 0 11.856-9.645 21.502-21.502 21.502s-21.502-9.645-21.502-21.502c0-3.859 3.129-6.988 6.988-6.988s6.988 3.129 6.988 6.988c0 4.15 3.376 7.526 7.526 7.526s7.526-3.376 7.526-7.526c0-3.859 3.129-6.988 6.988-6.988zm-48.972 46.058v15.362c0 3.859-3.129 6.988-6.988 6.988s-6.988-3.129-6.988-6.988v-15.362c0-3.859 3.129-6.988 6.988-6.988 3.859.001 6.988 3.129 6.988 6.988z\"></path></svg>							\n												<h5>\n													Personal care												</h5>\n											<p>People often take for granted the things they do every day, like climbing stairs, taking care of personal hygiene and even just getting out of bed</p>										\n											<a href=\"https://mrarif.me/avalumcare/personal-care/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_3\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m272 440c0 8.837-7.163 16-16 16h-176c-8.837 0-16-7.163-16-16v-368c0-8.837 7.163-16 16-16h16v8c0 13.255 10.745 24 24 24h96c13.255 0 24-10.745 24-24v-8h16c8.837 0 16 7.163 16 16h16c0-17.673-14.327-32-32-32h-24c-4.418 0-8 3.582-8 8v16c0 4.418-3.582 8-8 8h-96c-4.418 0-8-3.582-8-8v-16c0-4.418-3.582-8-8-8h-24c-17.673 0-32 14.327-32 32v368c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32v-152h-16z\"></path><path d=\"m128 40h80v16h-80z\"></path><path d=\"m181.048 249.408 44.36-44.36c19.456-19.456 19.456-51 0-70.456s-51-19.456-70.456 0l-44.36 44.36c-19.456 19.456-19.456 51 0 70.456s51 19.456 70.456 0zm-14.784-103.504c13.34-13.077 34.755-12.864 47.832.475 12.894 13.153 12.894 34.204 0 47.357l-16.496 16.52-47.856-47.856zm-54.264 68.272c-.024-8.973 3.542-17.584 9.904-23.912l16.496-16.52 47.856 47.856-16.52 16.528c-13.212 13.206-34.628 13.202-47.834-.01-6.348-6.35-9.91-14.964-9.902-23.942z\"></path><path d=\"m472 80h-152v-16c-.035-30.913-25.087-55.965-56-56h-192c-30.913.035-55.965 25.087-56 56v384c.035 30.913 25.087 55.965 56 56h192c30.913-.035 55.965-25.087 56-56v-176h40v24c-.001 3.235 1.947 6.153 4.936 7.392.971.405 2.012.611 3.064.608 2.122 0 4.156-.844 5.656-2.344l29.656-29.656h68.688c17.673 0 32-14.327 32-32v-128c0-17.673-14.327-32-32-32zm-168 368c-.026 22.08-17.92 39.974-40 40h-192c-22.08-.026-39.974-17.92-40-40v-384c.026-22.08 17.92-39.974 40-40h192c22.08.026 39.974 17.92 40 40v16h-8c-17.673 0-32 14.327-32 32v128c0 17.673 14.327 32 32 32h8zm184-208c0 8.837-7.163 16-16 16h-72c-2.122 0-4.156.844-5.656 2.344l-18.344 18.344v-12.688c0-4.418-3.582-8-8-8h-72c-8.837 0-16-7.163-16-16v-128c0-8.837 7.163-16 16-16h176c8.837 0 16 7.163 16 16z\"></path><path d=\"m80 280h176v16h-176z\"></path><path d=\"m80 312h176v16h-176z\"></path><path d=\"m80 344h144v16h-144z\"></path><path d=\"m240 344h16v16h-16z\"></path><path d=\"m384 112c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64c-.04-35.33-28.67-63.96-64-64zm0 112c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48c-.026 26.499-21.501 47.974-48 48z\"></path><path d=\"m392 144.112-16-.112v32c0 2.122.844 4.156 2.344 5.656l16 16 11.312-11.312-13.656-13.656c0-7.968 0-27.608 0-28.576z\"></path></svg>							\n												<h5>\n													Medication reminders												</h5>\n											Taking the right medication at the correct time is essential for maintaining health, managing chronic conditions, and 										\n											<a href=\"https://mrarif.me/avalumcare/medication-reminders/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m486.683 359.819h-2.65v-109.092c0-2.141-.857-4.192-2.38-5.697l-51.023-50.4c-1.499-1.48-3.521-2.311-5.628-2.311h-120.245c-4.423 0-8.008 3.585-8.008 8.008v84.827h-258.223c-4.423 0-8.008 3.585-8.008 8.008v66.657h-5.201c-12.31 0-22.323 10.014-22.323 22.322s10.014 22.352 22.323 22.352h22.402c3.967 32.535 31.754 57.826 65.358 57.826s61.39-25.291 65.357-57.826h150.594c3.966 32.535 31.741 57.826 65.33 57.826s61.391-25.291 65.358-57.826h26.966c12.309 0 22.323-10.026 22.323-22.352s-10.015-22.322-22.323-22.322zm-37.639 0c-11.836-17.596-31.93-29.197-54.685-29.197s-42.83 11.601-54.661 29.197h-26.934v-58.649h70.568c1.249 0 2.48-.292 3.597-.853l35.748-17.97h45.34v77.472zm-273.438 16.016h156.252c-1.342 4.056-2.298 8.283-2.829 12.643h-150.593c-.531-4.359-1.487-8.587-2.83-12.643zm137.159-167.5h108.949l46.304 45.738v12.259h-47.239c-1.249 0-2.48.292-3.597.853l-35.748 17.97h-68.669v-76.819zm-266.231 92.835h250.215v58.649h-128.987c-11.836-17.596-31.93-29.197-54.684-29.197s-42.849 11.601-54.685 29.197h-11.859zm-27.524 80.972c0-3.419 2.889-6.307 6.308-6.307h25.232c-1.343 4.056-2.299 8.283-2.83 12.643h-22.402c-3.478 0-6.308-2.843-6.308-6.336zm94.068 64.162c-27.486 0-49.848-22.349-49.848-49.818s22.361-49.848 49.848-49.848 49.847 22.361 49.847 49.848-22.361 49.818-49.847 49.818zm281.281 0c-27.47 0-49.818-22.349-49.818-49.818s22.349-49.848 49.818-49.848 49.848 22.361 49.848 49.848-22.361 49.818-49.848 49.818zm92.324-57.826h-26.965c-.531-4.359-1.487-8.587-2.83-12.643h29.795c3.419 0 6.308 2.888 6.308 6.307s-2.889 6.336-6.308 6.336zm-92.324-23.272c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.28-14.02 31.28-31.252-14.032-31.28-31.28-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.265 6.848 15.265 15.265-6.848 15.236-15.265 15.236zm-281.281-46.517c-17.232 0-31.252 14.032-31.252 31.28s14.02 31.252 31.252 31.252 31.251-14.02 31.251-31.252-14.02-31.28-31.251-31.28zm0 46.517c-8.401 0-15.236-6.835-15.236-15.236s6.835-15.265 15.236-15.265 15.235 6.848 15.235 15.265-6.835 15.236-15.235 15.236zm-46.161-215.173s.002.002.002.003c.022.025.047.047.069.073.201.23.412.447.631.649.07.064.146.122.218.184.188.161.38.313.579.454.083.058.167.113.251.167.213.139.431.266.654.382.051.027.097.061.149.087l43.057 21.315c13.104 6.489 29.201 9.73 44.87 9.729 15.799 0 31.162-3.297 42.563-9.883l.156-.09 2.764 43.27c.176 2.764 1.769 5.241 4.211 6.549 1.182.633 2.481.948 3.78.948 1.384 0 2.767-.358 4.004-1.073l31.861-18.396c2.16-1.247 3.616-3.43 3.938-5.902l7.668-59.015 126.752-73.187c8.279-4.778 12.931-12.723 12.763-21.796-.168-9.021-5.304-16.912-13.749-21.115l-15.904-7.88c-26.302-13.026-64.709-12.96-87.438.155l-49.802 28.754-69.58-40.177c-2.478-1.432-5.533-1.431-8.011 0l-30.217 17.461c-2.155 1.245-3.608 3.422-3.933 5.89s.517 4.946 2.277 6.706l46.483 46.483-44.691 25.804-63.923-42.873c-2.54-1.704-5.822-1.81-8.465-.285l-30.246 17.461c-2.056 1.188-3.479 3.226-3.886 5.565-.406 2.339.246 4.738 1.782 6.549l48.359 57.033zm151.125 52.443-4.416-69.133 31.749-18.346-2.355 18.129c-.047.26-.082.523-.103.788l-7.614 58.595zm70.732-172.945c10.1-5.827 25.009-8.326 39.905-7.521l-48.222 27.836c-3.831 2.211-5.144 7.108-2.933 10.938 1.483 2.57 4.175 4.006 6.943 4.006 1.357 0 2.734-.346 3.995-1.073l64.468-37.214c2.862.967 5.602 2.083 8.166 3.353l15.891 7.875c2.177 1.083 4.787 3.188 4.858 7.066.074 3.993-2.545 6.353-4.756 7.629l-116.147 67.063 2.404-18.504c.393-3.022-.964-6.005-3.499-7.695-2.536-1.69-5.813-1.795-8.448-.271l-50.089 28.941c-2.635 1.522-4.179 4.407-3.984 7.444l1.652 25.869-7.021 4.046c-17.931 10.357-51.05 10.207-72.323-.327l-29.656-14.682 36.566-21.113c.321-.159.634-.337.934-.539l107.606-62.13c.031-.019.064-.036.095-.055l53.594-30.944zm-148.569.816 17.18-9.927 57.568 33.241-32.608 18.827zm-85.611 49.442 53.25 35.714-33.035 19.073-37.832-44.618 17.616-10.17z\"></path></svg>							\n												<h5>\n													Transportation												</h5>\n											<p>We understand that getting to appointments, running errands, or visiting loved ones is an important part of maintaining independence and well-being.</p>										\n											<a href=\"https://mrarif.me/avalumcare/transportation/\">\n														Learn More													\n																																			</a>\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"a63f14a5-5d11-4310-98dd-5379a1ab346a\" data-name=\"Line\" viewBox=\"0 0 64 64\"><path d=\"M20.25293,49.8249c-1.42635-.45636-2.73631-.72205-3.45589-1.73393a4.87824,4.87824,0,0,0,1.38265-3.21919l.11963-3.16113A4.89763,4.89763,0,0,0,14.29,36.722l0-7.25553h2.94971a1.00011,1.00011,0,0,0-.00005-2H14.29a2.002,2.002,0,0,0-2,2v7.25727c-.953.17467-2.721.76728-2.02735,2.03183a1.00169,1.00169,0,0,0,1.37842.31589c1.91548-1.24278,4.82307.18652,4.65911,2.56554l-.11907,3.15906a2.894,2.894,0,0,1-5.78174.00041l-.10986-2.91984a1.00022,1.00022,0,0,0-1.999.0752c.09282,2.00695-.14366,4.68279,1.48821,6.14332C9.02434,49.16454,7.35847,49.485,6.32332,49.826A3.07,3.07,0,0,0,4,52.84736v1.4795a1.39527,1.39527,0,0,0,1.02148,1.35058,28.8149,28.8149,0,0,0,16.53614-.00055,1.39658,1.39658,0,0,0,1.02148-1.35v-1.4795A3.07157,3.07157,0,0,0,20.25293,49.8249Zm.32617,4.04493A26.47546,26.47546,0,0,1,6,53.8703V52.84736a1.07657,1.07657,0,0,1,.78809-1.07617c1.50948-.44093,3.68017-1.02466,4.66141-2.54295a4.96321,4.96321,0,0,0,3.67855-.001,3.66435,3.66435,0,0,0,1.3783,1.27736,14.51859,14.51859,0,0,0,3.28174,1.26563C20.73465,51.99134,20.5794,53.116,20.5791,53.86983Z\"></path><path d=\"M57.66846,49.82051c-1.02156-.32665-2.67563-.67269-3.46792-1.70928a4.87065,4.87065,0,0,0,1.403-3.24433l.11816-3.1543a4.90306,4.90306,0,0,0-4.01176-4.99118l0-7.25492a2.002,2.002,0,0,0-2-2H46.75977a1.00009,1.00009,0,0,0,0,2H49.71v7.25495a4.90343,4.90343,0,0,0-4.0107,4.99166c.10841,2.05361-.17746,4.87985,1.503,6.37621-.75817,1.07285-2.427,1.39779-3.45754,1.73278a3.07542,3.07542,0,0,0-2.32479,3.02233v1.48a1.4287,1.4287,0,0,0,1.019,1.35547l.8501.23a28.58133,28.58133,0,0,0,7.45313.98682c.78554.04855,1.84261-.00832,1.82712-1.04207A.98065.98065,0,0,0,51.54,54.885a26.93567,26.93567,0,0,1-8.12012-1.01124c.00132-.76088-.15606-1.87251.78862-2.10593,1.5-.43545,3.69-1.02916,4.66534-2.54382a4.95752,4.95752,0,0,0,3.67232.00027,3.62588,3.62588,0,0,0,1.37958,1.276,14.12044,14.12044,0,0,0,3.27881,1.26611A1.09538,1.09538,0,0,1,58,52.84443v1.02881c-.863.24018-1.68066.43731-2.63672.60693a1.0019,1.0019,0,0,0,.17584,1.98437,21.119,21.119,0,0,0,2.59223-.55465l.88916-.24173A1.41791,1.41791,0,0,0,60,54.32441v-1.48A3.07715,3.07715,0,0,0,57.66846,49.82051ZM47.81641,44.7917l-.11817-3.15381a2.873,2.873,0,0,1,.80811-2.11767c1.81216-1.90033,5.36353-.60771,5.21626,2.11773l-.11812,3.15424A2.8973,2.8973,0,0,1,47.81641,44.7917Z\"></path><path d=\"M27.7959,20.78047a1.593,1.593,0,0,1-1.25769-.64716c.50809-.83926,1.0777-2.88006-.46011-2.98227a1.0001,1.0001,0,0,0-1,1,1.76015,1.76015,0,0,1-1.65723,1.84375,1.0001,1.0001,0,0,0,0,2,3.4733,3.4733,0,0,0,1.69179-.45648,3.56647,3.56647,0,0,0,2.68317,1.24213A1.0001,1.0001,0,0,0,27.7959,20.78047Z\"></path><path d=\"M44.79834,24.75947c3.821-1.7615,3.82741-7.81484.00035-9.57762a5.20609,5.20609,0,0,0-4.15117-4.82429,5.00936,5.00936,0,0,0-4.626-3.26606A4.922,4.922,0,0,0,32,9.25483,4.922,4.922,0,0,0,27.97852,7.0915a5.01,5.01,0,0,0-4.62659,3.26612,5.2064,5.2064,0,0,0-4.15076,4.82422,5.40591,5.40591,0,0,0,.00049,9.57763,5.207,5.207,0,0,0,4.1441,4.814A4.90581,4.90581,0,0,0,32,30.68054a4.90549,4.90549,0,0,0,8.65372-1.10724A5.2071,5.2071,0,0,0,44.79834,24.75947ZM27.97852,30.84a2.96181,2.96181,0,0,1-2.44739-1.36865,5.01421,5.01421,0,0,0,2.86926-2.18506,1,1,0,0,0-1.69534-1.0605c-1.72787,2.7605-5.70526,1.20268-5.496-2.04407a.99971.99971,0,0,0-.69923-1.04875,3.37,3.37,0,0,1,0-6.3252A1.00027,1.00027,0,0,0,21.209,15.7585c-.26152-3.21437,3.77008-4.83426,5.49563-2.05216a.99993.99993,0,0,0,1.3784.31778c1.59523-1.27487-1.40636-3.30083-2.54966-3.5633C27.2458,7.84819,31.038,9.28414,31,12.40457l0,15.13225A3.17549,3.17549,0,0,1,27.97852,30.84Zm8.043,0A3.17549,3.17549,0,0,1,33,27.53682V12.40449c-.03727-3.1149,3.75131-4.56116,5.46646-1.94339-1.1381.25254-4.14651,2.29882-2.55,3.56253a.99773.99773,0,0,0,1.378-.31738,2.95689,2.95689,0,0,1,2.49659-1.436,3.18129,3.18129,0,0,1,2.99952,3.48828.99989.99989,0,0,0,.69921,1.04931c2.90292.8749,2.90552,5.45-.00011,6.32519a1.00029,1.00029,0,0,0-.69911,1.04884,3.16665,3.16665,0,0,1-2.9995,3.47948,2.95685,2.95685,0,0,1-2.4966-1.436,1,1,0,0,0-1.69531,1.061,5.018,5.018,0,0,0,2.86945,2.18494A2.961,2.961,0,0,1,36.02148,30.84Z\"></path><path d=\"M36.20361,22.78047a3.56647,3.56647,0,0,0,2.68317-1.24213,3.47345,3.47345,0,0,0,1.69183.45649,1.0001,1.0001,0,0,0,0-2,1.76014,1.76014,0,0,1-1.65718-1.84375,1.0001,1.0001,0,0,0-2,0,3.9487,3.9487,0,0,0,.53991,1.98219,1.593,1.593,0,0,1-1.25769.64716A1.00011,1.00011,0,0,0,36.20361,22.78047Z\"></path></svg>							\n												<h5>\n													Dementia care												</h5>\n											<p>Home Instead, Inc. Gerontologist and Care Pro Advocate, Lakelyn Hogan Eichenberger, together with other doctors and experts in aging, have created</p>										\n											<a href=\"https://mrarif.me/avalumcare/dementia-care/\">\n														Learn More													\n																																			</a>\n										<a href=\"https://mrarif.me/avalumcare/services/\">\n									View all Services\n					</a>\n									<h2>Resources</h2>		<p>Nobody knows exactly what to expect from their aging journey. It’s easy to feel overwhelmed when you don’t know what tomorrow will bring. The good news is, you don’t have to go through it alone.</p><p>Avalum Care exists to be your guide to successful living at home. Whether you’re looking for tips on aging in place, a guide to transitional care after a hospital stay,</p>								<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"680\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2.jpeg 680w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/about-2-204x300.jpeg 204w\" sizes=\"(max-width: 680px) 100vw, 680px\" />																										<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1.jpg 667w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/service-area-1-200x300.jpg 200w\" sizes=\"(max-width: 667px) 100vw, 667px\" />																<h2>Contact Us</h2>					<h6>Have a question but can\'t find an answer? </h6>		Are you ready to learn more about our care services or career opportunities? Send us a message! 					\n				<a href=\"tel:3106945001\" tabindex=\"-1\" aria-label=\"Phone\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>				</a>\n									<h4>\n						<a href=\"tel:3106945001\" >\n							Phone						</a>\n					</h4>\n									<p>\n						(310) 694-5001					</p>\n				<a href=\"mailto:info@avalumcare.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>				</a>\n									<h4>\n						<a href=\"mailto:info@avalumcare.com\" >\n							Email						</a>\n					</h4>\n									<p>\n						info@avalumcare.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-11 08:24:36', '2026-02-11 08:24:36', '', 10, 'https://mrarif.me/avalumcare/?p=581', 0, 'revision', '', 0),
(582, 1, '2026-02-11 08:26:22', '2026-02-11 08:26:22', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-11 08:26:22', '2026-02-11 08:26:22', '', 70, 'https://mrarif.me/avalumcare/?p=582', 0, 'revision', '', 0),
(583, 1, '2026-02-11 08:28:01', '2026-02-11 08:28:01', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-11 08:28:01', '2026-02-11 08:28:01', '', 70, 'https://mrarif.me/avalumcare/?p=583', 0, 'revision', '', 0),
(584, 1, '2026-02-11 08:28:29', '2026-02-11 08:28:29', '<ul>\n							<li>\n											<a href=\"mailto:info@avalumcare.com\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m465 70.879h-418a47.053 47.053 0 0 0 -47 47v276.242a47.053 47.053 0 0 0 47 47h418a47.053 47.053 0 0 0 47-47v-276.242a47.053 47.053 0 0 0 -47-47zm-127.029 185.121 147.859-147.859a22.855 22.855 0 0 1 2.17 9.738v276.242a22.855 22.855 0 0 1 -2.17 9.738zm127.029-161.121h.147l-209.147 209.151-209.147-209.147h.147zm-438.83 308.98a22.862 22.862 0 0 1 -2.17-9.738v-276.242a22.855 22.855 0 0 1 2.17-9.738l147.859 147.859zm20.83 13.262c-.049 0-.1 0-.148 0l144.148-144.151 56.516 56.516a12 12 0 0 0 16.97 0l56.514-56.515 144.147 144.146c-.049 0-.1 0-.147 0z\"></path></svg>						\n										info@avalumcare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3106945001\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m382.611 316.806c-15.4-16.976-39.207-19.984-57.908-7.309l-32.412 21.963c-13.061 8.844-44.283-13.915-69.6-50.745-20.088-29.222-31.468-60.072-28.317-76.766 1.079-5.721 3.543-7.968 5.3-9.161l32.412-21.964c18.643-12.633 24.682-35.851 14.686-56.461l-47.424-97.769c-4.114-8.483-11.748-14.594-21.506-17.207-12.32-3.3-27-.592-38.31 7.073l-64.817 43.922c-20.437 13.85-40.315 46.118-18.929 121.166 13.984 49.084 43.119 107.744 82.037 165.175 38.8 57.252 82.263 105.787 122.393 136.664 36.156 27.818 63.962 36.979 84.9 36.979a60.043 60.043 0 0 0 34.389-10.207l64.816-43.923c11.452-7.76 19.207-20.052 20.746-32.883 1.2-10.035-1.626-19.411-7.967-26.4zm58.626 105.694c-.7 5.844-4.775 12.073-10.378 15.87l-64.817 43.923a36.464 36.464 0 0 1 -20.916 6.022c-24.387 0-52.971-18.636-70.273-31.948-38.154-29.356-79.762-75.917-117.16-131.105-79.454-117.253-109.337-226.022-69.512-253.01l64.819-43.923c5.622-3.807 12.933-5.282 18.633-3.757 3 .806 5.065 2.319 6.122 4.5l47.425 97.768c3.938 8.12 3.439 19.344-6.555 26.116l-32.411 21.964c-8.092 5.483-13.426 13.984-15.425 24.581-6.6 35 22.918 81.421 32.124 94.813 14.683 21.359 31.639 39.186 47.743 50.2 26.814 18.331 44.765 13.829 55.1 6.821l32.412-21.962c10.025-6.792 20.614-3.105 26.662 3.564l74.492 82.144c1.643 1.806 2.288 4.302 1.915 7.419z\"></path></svg>						\n										(310) 694-5001\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/avalumcare/\">\n							<img width=\"331\" height=\"363\" src=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png\" alt=\"\" srcset=\"https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7.png 331w, https://mrarif.me/avalumcare/wp-content/uploads/2026/02/logo-7-274x300.png 274w\" sizes=\"(max-width: 331px) 100vw, 331px\" />								</a>\n																					<a href=\"https://mrarif.me/avalumcare/contact/\">\n									Contact\n					</a>', 'Elementor Header #70', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2026-02-11 08:28:29', '2026-02-11 08:28:29', '', 70, 'https://mrarif.me/avalumcare/?p=584', 0, 'revision', '', 0);

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

--
-- Table structure for table `wpa_termmeta`
--

CREATE TABLE `wpa_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 `wpa_terms`
--

CREATE TABLE `wpa_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 `wpa_terms`
--

INSERT INTO `wpa_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Primary', 'primary', 0),
(3, 'header', 'header', 0),
(4, 'container', 'container', 0),
(5, 'page', 'page', 0),
(6, 'footer', 'footer', 0);

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

--
-- Table structure for table `wpa_term_relationships`
--

CREATE TABLE `wpa_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 `wpa_term_relationships`
--

INSERT INTO `wpa_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(37, 2, 0),
(38, 2, 0),
(42, 2, 0),
(40, 2, 0),
(39, 2, 0),
(70, 3, 0),
(77, 3, 0),
(143, 4, 0),
(193, 5, 0),
(276, 4, 0),
(293, 6, 0),
(346, 2, 0),
(345, 2, 0),
(344, 2, 0),
(343, 2, 0),
(342, 2, 0),
(341, 2, 0),
(340, 2, 0),
(339, 2, 0),
(338, 2, 0),
(573, 2, 0),
(574, 4, 0);

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

--
-- Table structure for table `wpa_term_taxonomy`
--

CREATE TABLE `wpa_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 `wpa_term_taxonomy`
--

INSERT INTO `wpa_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 15),
(3, 3, 'elementor_library_type', '', 0, 1),
(4, 4, 'elementor_library_type', '', 0, 3),
(5, 5, 'elementor_library_type', '', 0, 1),
(6, 6, 'elementor_library_type', '', 0, 1);

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

--
-- Table structure for table `wpa_usermeta`
--

CREATE TABLE `wpa_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 `wpa_usermeta`
--

INSERT INTO `wpa_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, 'wpa_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpa_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '0'),
(16, 1, 'session_tokens', 'a:2:{s:64:\"f27fbcc84a9f1f74c15ee89c1a930afb1c7e937d52e6b0ead8749e0a752af38c\";a:4:{s:10:\"expiration\";i:1771933499;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/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1770723899;}s:64:\"c97575e305ed89fd0a0d945040b10b95312d1587ee888d94b226c1fde822fa8b\";a:4:{s:10:\"expiration\";i:1771450773;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:1771277973;}}'),
(17, 1, 'wpa_dashboard_quick_press_last_post_id', '5'),
(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, 'astra-sites-on-active', 'notice-dismissed'),
(21, 1, 'wpa_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"xTfvfExUriVp1t8RcGMzH9inx02RULPf\";s:11:\"auth_secret\";s:32:\"npjgobH3ZdiCGChU65tPJCapqQ6l8rqo\";s:12:\"access_token\";s:299:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9hdmFsdW1jYXJlLyIsImNsaWVudF9pZCI6InhUZnZmRXhVcmlWcDF0OFJjR016SDlpbngwMlJVTFBmIiwiY29ubmVjdF90eXBlIjoiYWN0aXZhdGUiLCJpYXQiOjE3NzA3MjUxMzMsImV4cCI6MzE3MzE1MTY3NTMzfQ.NyU-Mk0MwBwRwCwXu4lcoLqk2gDqUznPbIcrpb1K9A8\";s:19:\"access_token_secret\";s:32:\"EvCK2iYfNl5HQqnR1X7ZC4K2JMJ4UY9r\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":2:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";s:10:\"first_name\";s:4:\"Arif\";}s:19:\"data_share_opted_in\";b:1;}'),
(22, 1, 'wpa_user-settings', 'editor=tinymce&libraryContent=browse'),
(23, 1, 'wpa_user-settings-time', '1770796532'),
(24, 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\";}'),
(25, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(26, 1, 'nav_menu_recently_edited', '2');

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

--
-- Table structure for table `wpa_users`
--

CREATE TABLE `wpa_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 `wpa_users`
--

INSERT INTO `wpa_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$Xk1q9azBSJd.1CXJ9FfSROqrI85dM.LeB1kTP.DC02q6jB6dtPfSa', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/avalumcare', '2026-02-10 11:24:42', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

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

--
-- Indexes for table `wpa_comments`
--
ALTER TABLE `wpa_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 `wpa_e_events`
--
ALTER TABLE `wpa_e_events`
  ADD PRIMARY KEY (`id`),
  ADD KEY `created_at_index` (`created_at`);

--
-- Indexes for table `wpa_e_notes`
--
ALTER TABLE `wpa_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 `wpa_e_notes_users_relations`
--
ALTER TABLE `wpa_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 `wpa_e_submissions`
--
ALTER TABLE `wpa_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 `wpa_e_submissions_actions_log`
--
ALTER TABLE `wpa_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 `wpa_e_submissions_values`
--
ALTER TABLE `wpa_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

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

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

--
-- Indexes for table `wpa_litespeed_url_file`
--
ALTER TABLE `wpa_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 `wpa_options`
--
ALTER TABLE `wpa_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

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

--
-- Indexes for table `wpa_posts`
--
ALTER TABLE `wpa_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 `wpa_termmeta`
--
ALTER TABLE `wpa_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

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

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

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

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

--
-- Indexes for table `wpa_users`
--
ALTER TABLE `wpa_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 `wpa_commentmeta`
--
ALTER TABLE `wpa_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for table `wpa_users`
--
ALTER TABLE `wpa_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
